table borders in my article
-
Is there any way to add table borders and cell borders in a table in my article. my current table looks like the following : https://i.stack.imgur.com/WXn6t.png[^] I have looked at the table options and they are currently set like the following: https://i.stack.imgur.com/FLuck.png[^] I've also noticed that if I download the HTML and view it in a browser then I do see borders on table and columns: https://i.stack.imgur.com/gANx6.png[^] but, that's only if I remove the links to the other stylesheets. Thanks for any help.
-
Is there any way to add table borders and cell borders in a table in my article. my current table looks like the following : https://i.stack.imgur.com/WXn6t.png[^] I have looked at the table options and they are currently set like the following: https://i.stack.imgur.com/FLuck.png[^] I've also noticed that if I download the HTML and view it in a browser then I do see borders on table and columns: https://i.stack.imgur.com/gANx6.png[^] but, that's only if I remove the links to the other stylesheets. Thanks for any help.
We have a class just for tables. Inside just put <table class="ArticleTable"> and you'll be using the design used for all tables on CodeProject.
Thanks, Sean Ewington CodeProject
-
We have a class just for tables. Inside just put <table class="ArticleTable"> and you'll be using the design used for all tables on CodeProject.
Thanks, Sean Ewington CodeProject
-
We have a class just for tables. Inside just put <table class="ArticleTable"> and you'll be using the design used for all tables on CodeProject.
Thanks, Sean Ewington CodeProject
-
Sweet!!! I just added the class to the existing table in my article and now it looks great[^]. thanks again! :)
Wow. Someone who actually documents arcane command line stuff!
Robust Services Core | Software Techniques for Lemmings | Articles
The fox knows many things, but the hedgehog knows one big thing. -
Wow. Someone who actually documents arcane command line stuff!
Robust Services Core | Software Techniques for Lemmings | Articles
The fox knows many things, but the hedgehog knows one big thing.Greg Utas wrote:
arcane command line stuff
It is interesting to me that during my IT career -- started in 1991 -- that we: 1. used command line bec we were forced too, no real other choice 2. moved quickly toward GUI stuff -- as everyone thought it would make _everything_ easier / better 3. moved gradually back to command line more and more as we learned that it is far easier to reproduce consistently. I think you've been in the IT game for quite some time too so you probably have the same experience. :) Here's my big story about this: Back around 2000 I was doing C# development (still am) and I had to develop a piece which would save data to Oracle database. I worked up the forms and the data schema. I had to submit the data schema (3 or 4 tables) to the DB ADMIN. He approved it and I sent him the DDL that he could run and create the tables. -- you know that is basically a command-line script :-D He sent and email and let me know my tables were created. I started working on my code and testing form to insert data in tables. Got a strange crash and discovered that two different field's data types were incorrect. They were varchar and should've been int. What?! I checked my script and they were correct. I walked over to DB ADMIN and inquired. I said, "I'm not sure how those fields could've been changed since they are set in the DDL." DB ADMIN said, "Oh, I don't run those scripts I just looked at them when I ran Toad (Oracle GUI tool[^] for DB work) and created the tables & fields by hand." I sh** myself and walked out to clean up. :laugh:
-
Greg Utas wrote:
arcane command line stuff
It is interesting to me that during my IT career -- started in 1991 -- that we: 1. used command line bec we were forced too, no real other choice 2. moved quickly toward GUI stuff -- as everyone thought it would make _everything_ easier / better 3. moved gradually back to command line more and more as we learned that it is far easier to reproduce consistently. I think you've been in the IT game for quite some time too so you probably have the same experience. :) Here's my big story about this: Back around 2000 I was doing C# development (still am) and I had to develop a piece which would save data to Oracle database. I worked up the forms and the data schema. I had to submit the data schema (3 or 4 tables) to the DB ADMIN. He approved it and I sent him the DDL that he could run and create the tables. -- you know that is basically a command-line script :-D He sent and email and let me know my tables were created. I started working on my code and testing form to insert data in tables. Got a strange crash and discovered that two different field's data types were incorrect. They were varchar and should've been int. What?! I checked my script and they were correct. I walked over to DB ADMIN and inquired. I said, "I'm not sure how those fields could've been changed since they are set in the DDL." DB ADMIN said, "Oh, I don't run those scripts I just looked at them when I ran Toad (Oracle GUI tool[^] for DB work) and created the tables & fields by hand." I sh** myself and walked out to clean up. :laugh:
I haven't done DB work but still found your story hilarious. After I started to use GUIs as a user, I never wanted to see command line stuff again. Ever. When Apple Macs came out, we used them for everything but development, which was on terminals hosted by IBM mainframes. When Unix workstations replaced the terminals, I was not pleased. Eventually I got up to speed, by why this suffering? With GUIs, you just poke around and figure out how to do most things without even reading the documentation. It was the same with MS-DOS. Having used a Mac, I thought it was total crap. Of course, the software that I develop only has a command line interface. :-D The problem with GUIs is that they're platform specific and add even more boilerplate, which C++ already provides enough of.
Robust Services Core | Software Techniques for Lemmings | Articles
The fox knows many things, but the hedgehog knows one big thing.