Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Other Discussions
  3. Article Writing
  4. table borders in my article

table borders in my article

Scheduled Pinned Locked Moved Article Writing
htmlcomdata-structureshelp
7 Posts 3 Posters 3 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • raddevusR Offline
    raddevusR Offline
    raddevus
    wrote on last edited by
    #1

    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.

    S 1 Reply Last reply
    0
    • raddevusR raddevus

      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.

      S Offline
      S Offline
      Sean Ewington
      wrote on last edited by
      #2

      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

      raddevusR 2 Replies Last reply
      0
      • S Sean Ewington

        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

        raddevusR Offline
        raddevusR Offline
        raddevus
        wrote on last edited by
        #3

        I will try it out. Thanks for the response.

        1 Reply Last reply
        0
        • S Sean Ewington

          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

          raddevusR Offline
          raddevusR Offline
          raddevus
          wrote on last edited by
          #4

          Sweet!!! I just added the class to the existing table in my article and now it looks great[^]. thanks again! :)

          Greg UtasG 1 Reply Last reply
          0
          • raddevusR raddevus

            Sweet!!! I just added the class to the existing table in my article and now it looks great[^]. thanks again! :)

            Greg UtasG Offline
            Greg UtasG Offline
            Greg Utas
            wrote on last edited by
            #5

            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.

            <p><a href="https://github.com/GregUtas/robust-services-core/blob/master/README.md">Robust Services Core</a>
            <em>The fox knows many things, but the hedgehog knows one big thing.</em></p>

            raddevusR 1 Reply Last reply
            0
            • Greg UtasG Greg Utas

              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.

              raddevusR Offline
              raddevusR Offline
              raddevus
              wrote on last edited by
              #6

              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 UtasG 1 Reply Last reply
              0
              • raddevusR raddevus

                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 UtasG Offline
                Greg UtasG Offline
                Greg Utas
                wrote on last edited by
                #7

                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.

                <p><a href="https://github.com/GregUtas/robust-services-core/blob/master/README.md">Robust Services Core</a>
                <em>The fox knows many things, but the hedgehog knows one big thing.</em></p>

                1 Reply Last reply
                0
                Reply
                • Reply as topic
                Log in to reply
                • Oldest to Newest
                • Newest to Oldest
                • Most Votes


                • Login

                • Don't have an account? Register

                • Login or register to search.
                • First post
                  Last post
                0
                • Categories
                • Recent
                • Tags
                • Popular
                • World
                • Users
                • Groups