Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by stein555

  1. stein555

    Holding column heads while page scrolls

    If you know how wide you want the table to be (total width), you can calculate the widths of the other columns by dividing the total width by the number of columns. I will give you an example of what I would do if I were reading the data in from a database... <table width=800> <tr> <%for i = 0...
  2. stein555

    Table Headers on Left (instead of top)

    Aight...I figured it out...thank you for the help grtfercho! Here's the code... <table border=1 width=100%> <% k = i do while NOT rsDB.Fields.Item(k).Name = request.querystring(&quot;end&quot;) response.write(&quot;<tr><th>&quot; & rsDB.Fields.Item(k).Name & &quot;</th>&quot;)...
  3. stein555

    Table Headers on Left (instead of top)

    Almost! Except it doesn't separate out each entry as a separate table element. So it crams all the headers together on the left, and all the data together on the right (and they aren't one line a piece). Good idea, though...I may play around with the logic on that one to see if I can figure...
  4. stein555

    Table Headers on Left (instead of top)

    Exactly! Thank you, grtfercho, for clearing that up ;)
  5. stein555

    Table Headers on Left (instead of top)

    I would love to, but I'm pulling all the data for the table from a database...I will post my code to queue you in more on what I am doing... <table border=1 width=100%> <tr> <% k = i do while NOT rsDB.Fields.Item(k).Name = request.querystring(&quot;end&quot;) response.write(&quot;<td...
  6. stein555

    Table Headers on Left (instead of top)

    I saw that thread. Am I missing something? What I see in that thread is how to rotate the text to display vertically inside the table (which isn't what I need). I do see the example in there where the person is flipping the text using CSS (filter:flipv fliph), but all that does is put my...
  7. stein555

    Table Headers on Left (instead of top)

    How do you do this? I remember seeing a thread a month or two ago about this, but I didn't read it. Now I am needing to do this myself. Is there a quick CSS trick that can do this? Basically I want all the headers to be listed vertically down the page and the data &quot;underneath&quot; them...
  8. stein555

    Scroll bar affecting two frames

    Doh...I'm an idiot - had <div name=&quot;blah&quot;> instead of <div ID=&quot;blah&quot;>...I got it working now... Thanks a ton!
  9. stein555

    Scroll bar affecting two frames

    You are the man qrhythm! This is really close to what I want. I am attempting to use option B now. I got it work partially in I-Frames so I know it is working (scrolling two windows at once), but I can't get it to recognize my top DIV (the header DIV). I am not vert familiar with the...
  10. stein555

    Scroll bar affecting two frames

    Heh...I would do that, but with how much data I have being output to the screen, it would look horrible... I may just give up on this and try to go a different route with the design...
  11. stein555

    Scroll Bar Issue

    That scrolls the whole table up and down. I only want what is in the middle to scroll vertically. The header at the top needs to stay at the top at all times... I did see that post on the other forum, but it wasn't exactly what I was looking for... =/
  12. stein555

    Scroll Bar Issue

    I am using this code as an example of what I am trying to do. It was posted earlier, so I just took it and modified it. When you paste this code into an HTML file, the result is a table with scroll bars. Now, the bottom scroll bar is there to allow you to scroll the data left and right. The...
  13. stein555

    Scroll bar affecting two frames

    After reading up on the Div attribute, I think I am going to switch over to <div> and <table>. That should make it easier for me to line up my columns...BUT, I think I will still have the problem of having to horizontally scroll before I can get to the vertical scroll bar... I basically just...
  14. stein555

    Scroll bar affecting two frames

    I am using an IFrame currently. I have to scroll to the right to get to the vertical scollbar for the iFrame (because I need the header to be lined up outside of the frame with the data inside - or I need a different way to keep the header at the top while I scroll through the data)... I...
  15. stein555

    Scroll bar affecting two frames

    I was just thinking about this and reading some other forums...is there any way that I could turn all that into a table that that has scrollbars? And more specifically, a vertical scrollbar for the bottom half only (while the horizontal scrollbar affects the whole table)... Does that make any...

Part and Inventory Search

Back
Top