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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Billkamm

    Prevent text from wrapping

    nevermind that last question
  2. Billkamm

    Prevent text from wrapping

    Unfortunately, I have some grid data I'm displaying in a table and despite the "nowrap" being set on every table cell, it is still wrapping the table columns on me :( Any suggestions?
  3. Billkamm

    Prevent text from wrapping

    I never knew that property existed. Thanks for the tip.
  4. Billkamm

    Prevent text from wrapping

    I have some text that I do not wish to wrap to a second a line. I tried placing this in a DIV tag and setting a width and overflow:auto, however, this will cause a scroll when the width of the DIV is greater than its container (the browser window). If I only have 3 characters I do not want a...
  5. Billkamm

    Adding attibutes when the same attribute already exists

    Hi, I have a control that already has an onblur event built-in on to it when it renders (it is a custom textbox control). However, I need to add an onblur event to this control (I'm using .Attributes.Add() in the code behind), but I do not believe that my onblur code is being fired due to there...
  6. Billkamm

    CSS: How to vertically align text in a DIV

    Thanks for the tip. I believe I found my solution here: http://phrogz.net/CSS/vertical-align/index.html
  7. Billkamm

    CSS: How to vertically align text in a DIV

    I have a DIV tag and I want to vertically align the text within it. The DIV element's height is 200px, but no matter what I try the text is always at the top of this box. Is vertical-align: middle not the appropriate CSS for accomplishing this? I've even tried putting the text in a SPAN...
  8. Billkamm

    Table cells not lining up correctly in Firefox

    This is the best method available for this site. I got a suggestion from someone though to use display:inline-table.
  9. Billkamm

    Table cells not lining up correctly in Firefox

    I have a page with three nested tables. When the middle table has display:inline set the cells of the lowest table all collapse to the left in Firefox. This does not occur in MSIE and does not occur if there is no outer table. Does anyone know why this is occurring? This does not seem...
  10. Billkamm

    Session variables stay when Firefox is closed, but not in IE

    I was unaware I launch new MSIE windows by running iexplore.exe and new firefox window by running firefox.exe. I guess MSIE allows you to have multiple instance of iexplore.exe by default and Firefox does not. Thanks for the tip.
  11. Billkamm

    Session variables stay when Firefox is closed, but not in IE

    I checked the Firefox and I think that cookieless sessions would most likely work. http://forums.mozillazine.org/viewtopic.php?t=511561&highlight=
  12. Billkamm

    Session variables stay when Firefox is closed, but not in IE

    When I close my IE 6 browser and re-open and navigate to my ASP.Net website all of my session variables are null. In Firefox 2 when I close the browser and re-open and navigate to my ASP.Net website all of the previous session variables are still there. I want the session variables to be...
  13. Billkamm

    Color Scheme

    Is there a way to change the color scheme or other display properties via VBScript? I can even used a WshShell.Run command if anyone knows a command line way of doing this. Thanks.
  14. Billkamm

    Firefox callbacks don't work with pop-ups

    I have a page that uses callbacks to check if the work is complete on the server yet. It will callback to check if the work is complete and if it isn't it will wait for 15 seconds then return back to the client-side and display a pop-up that says "Do you want to continue?" and if the user picks...
  15. Billkamm

    Positioning a scrollbar in MSIE

    Whenever a scrollbar appears in my DIV element it appears within the DIV element and does not expand the size of that element or place the scrollbar after the element. For example if I have 500 pixel height on a DIV element and a horizontal scrollbar is 10 pixels (estimate) then when the...
  16. Billkamm

    Horizontal Scrollbar casues uneeded vertical scrollbar

    mbrooks that is what I'm using and that is what is causing my problem described above
  17. Billkamm

    Horizontal Scrollbar casues uneeded vertical scrollbar

    Whenever a horizontal scrollbar appears with an DIV element I have setup then a vertical scrollbar appears as well. I have noticed that MSIE appends the horizontal scrollbar within the DIV tag and not after the DIV tag. Therefore I now have the height of scrollbar LESS in my DIV area (hence...
  18. Billkamm

    OVERFLOW: scroll only shows vertical, need horizontal

    It turns out that in MSIE the CSS Overflow attribute does not work with the table tag and you must put this in a DIV tag around the TABLE tag. In addition the tables around my piece sized dynamically causing the width/height never to be such that scrollbars were needed. Thanks to everyone for...
  19. Billkamm

    OVERFLOW: scroll only shows vertical, need horizontal

    Vragabond: I'm doing a small part of a large project. My piece of the puzzle is nested into several layers of tables. In addition we are using ASP.Net 2.0 to create this site and it renders a lot of its objects into HTML tables, so in order to take advanatage of hte tools ASP.Net has to offer...
  20. Billkamm

    OVERFLOW: scroll only shows vertical, need horizontal

    I found something interesting that is occurring. The horizontal scrollbar only displays if MSIE is resized first. I'm not exactly sure why this is. Also, I'm having trouble getting scrollbars to appear in a nested table if there are already scrollbars on the outer table.

Part and Inventory Search

Back
Top