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 Wanet Telecoms Ltd 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: *

  • Users: Billkamm
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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.
  7. 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...
  8. 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...
  9. 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...
  10. Billkamm

    OVERFLOW: scroll only shows vertical, need horizontal

    I am using OVERFLOW: scroll on a TD tag and it is only showing a vertical scrollbar (this scrollbar appears even without OVERFLOW: scroll). What is the correct CSS syntax to place a horizontal scrollbar for an entire table cell?
  11. Billkamm

    Finding database values in ItemDataBound of a dg

    I have a datagrid where when you click the edit button dropdownlists appear for that row. However, I need a way to change the dropdownlist to the appropriate value (it always starts at the top). Does anyone know the syntax as to how I would obtain this value, so that I can update the...
  12. Billkamm

    Datagrid cell returning "" in ItemDataBound

    I have a problem where my cells in the datagrid are returning "" in the ItemDataBound event. When there is data in the cells, but in my code both e.Item.Cells(5).Text and CType(e.Item.Cells(5).Controls(0), LiteralControl).Text. Does anyone have any ideas? Here is my code below. Private...
  13. Billkamm

    Changing An Access Form Scrollbar Placeholder Color

    I have a form with a colored background, but the space where the scrollbar will appear on the form if needed is a solid gray rectangle. Is there a way to change this color, so that is matches the form? I'm fine with the scrollbar itself being gray I just don't want that gray placeholder to be...
  14. Billkamm

    Turn off validation for DataGrid EditButton

    I have an EditButton with my datagrid that is on the same page that contains RegularExpressionValidators. However, when I click the Update button after editing a row in the datagrid it gets stopped by the validators. How may I turn off the Update button going up against the validators (which...
  15. Billkamm

    Changing the color of select datagrid rows

    Is there a way to change the color of a datagrid row if a certain condition is met other than placing a helper function in every column?
  16. Billkamm

    Collection of open forms?

    Is there a collection that will contain all of the open forms in VB.Net? I have two forms FormA and FormB. FormB opens on the start of the program (as a splash screen) and then it using ShowDialog to display FormA. FormA however takes awhile to load because it is pulling A LOT of information...
  17. Billkamm

    Get Pixel Location of a DIV element

    I have a div tag with an id attribute set. I have searched all over google and I can't figure out for the life of my how to get the screen position in pixels of this element. I want to position a tooltip relative to this div tag, so I wanted to add these numbers to the tooltip's .style.top and...
  18. Billkamm

    Attributes.Add("onclick") causes validators to stop working

    I added the following line of code to my codebehind and my Validators stopped working. What can I do to make my validators continue to work and still be able to use a confirm() call with the onclick event? btnSubmit.Attributes.Add("onclick", "return confirm('You are about to submit a new...
  19. Billkamm

    Need help with a table structure

    I have 5 tables in a productivity database: Groups, Task, Sub-Task, Market, and Product A combination of any field in those 5 tables can be an entry into the productivity database. So like Group1, Task2, Sub-Task4, Market1, and Product2 could be an entry. Also, a lot of them don't need the...
  20. Billkamm

    Storing a hidden key value for each row in a datagrid

    I have a datagrid which displays some information and it also has a Delete button column. My problem is I do not want to display the id (database key) associated with the record on the page, but I need this value to delete the record when the user clicks delete. Is there a way to store the key...

Part and Inventory Search

Back
Top