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. drs9222

    StateBag and Custom Controls

    Thanks to womp at StackOverflow for setting me straight...
  2. drs9222

    StateBag and Custom Controls

    Lets pretend that for some reason I want to create a custom control that is derived from Control and not WebControl. Let us also assume that I need to process attributes (i.e. implement IAttributeAccessor) and that I want to do so by using an AttributeCollection just like WebControl does...
  3. drs9222

    How to make web content fit in a window w/out scroll bars

    If anyone has found a solution to this could they point me to it.
  4. drs9222

    Auto sizing of popup window for images

    http://www.codelifter.com/main/javascript/autosizeimagepopup.html
  5. drs9222

    CSS :hover in IE

    oh sorry I was hoping for a pure css solution. But thanks.
  6. drs9222

    CSS :hover in IE

    I know that it only works with A tags. Does anyone know how to get rid of the little dotted border when it gets focus. Having to use links wouldn't be so bad if I could get rid of that last little thing.
  7. drs9222

    this.style.background-image in a TD element

    But hover won't work in IE unless it's in a link right? Or am I doing something wrong?
  8. drs9222

    positioning text

    Just a note if you only want to indent on the left you can use margin-left or padding-left insted of margin or padding which will leave space all the way around the text.
  9. drs9222

    It seems like it ought to be simple

    In case your interested here's a sample of dragging to another list box. It's kind of clumsy looking and I woudn't use it but it might help you understand how the drag commands work. This assumes you have two listbox (list1, list2) on a form. Option Explicit Private isDragging As Boolean...
  10. drs9222

    It seems like it ought to be simple

    I don't believe that VB supports this natevly. It may be possible through the API. The drag mtehod/properties refer to draging the entire control. It is possible to drag one list box onto another one and insert the select item but thats as close as I can come to what your looking for without...
  11. drs9222

    Keep Notepad on top

    I don't think that will be enough for what he needs. It sounds like he's using sendkeys (or something similer) so even if notepad is on top of all other apps it can still loose focus even if it's only to the taskbar. I'm sure there's away to stop that from happening too but I can't think of it...
  12. drs9222

    waiting a time period without exiting from subroutine

    There is a simple API code you can call to handle this. Place this in the declaration section of your code: Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) Then when you want to wait (say for 100ms) call it by inserting the line: Sleep 100
  13. drs9222

    What's in the System Tray (Not putting a icon in the tray)

    Does anyone know of a way to find out what icons are registered and retrieve their NOTIFYICONDATA. Or if you can't find out which ones are already in the tray do you know of a way to be notified when new icons are added using Shell_NotifyIcon? [cry]
  14. drs9222

    Need CGI Access - Dont Want Tripod etc. Any ideas?

    f2s was great but they're no longer free. Has anyone found a decent replaecment? (i.e. free/addless)
  15. drs9222

    Darn that Netscape! It's always som

    not you tsdragon I ment trojan800
  16. drs9222

    Darn that Netscape! It's always som

    I actully agree with tsdragon. I just fixed his syntax. It is easier to maintain that way and short circut evaluation could really cause some problems. Wish I had thought of it myself.
  17. drs9222

    syntax help ? for mulitlines of if condition

    lol I'm sorry I should have seen that. I just looked at the parenthesis to make sure everything matched I didn't even check the conditions.
  18. drs9222

    syntax help ? for mulitlines of if condition

    Yep that should work
  19. drs9222

    Switch / case question

    Kind of... Do it like this switch (expression) { case "value1": case "value2": //Code goes here break; case "value3": //.... } The program will run starting from the matching case to the break statment. If you leave out the...

Part and Inventory Search

Back
Top