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 Mike Lewis 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: hoolz
  • Order by date
  1. hoolz

    IE image buttons WITHOUT a focus?

    hello all, i read on this forum a while back that someone knew how to create a function or a style that made it to where you don't get those annoying halos around buttom images in IE 5 and lower. i really need to know how to take care of this, so if anyone knows how, please help! thanks in...
  2. hoolz

    how do you valign an image to the middle of a <TD> ?

    hello, this is a case of how much i cant stand forms..hehehe, just try tossing that last image in its own cell. you may have to tweek the spacing of things a bit, but at least you'll be able to control all of the cell attributes once its away from the form text box. hope this helps! </hoolz>...
  3. hoolz

    Dynamic Menubar

    the best way that ive found which allows virtually 100% control is to use dynamic layers and just do &quot;hide&quot; and &quot;show&quot; function. the most recent one i did used pixel perfect positioning and a few hidden graphics for the perfect illusion. if you want more info on my method...
  4. hoolz

    FTP server login script

    try that same code, but a bit different like this, and compare. hope this helps! ps-this code does put the password in the window location...i may work on one that doesnt. </hoolz> <html> <head> <script language=&quot;Javascript&quot;> <!-- function enter() { user =...
  5. hoolz

    FTP server login script

    try that same code, but a bit different like this, and compare. hope this helps! </hoolz> <html> <head> <script language=&quot;Javascript&quot;> <!-- function enter() { user = document.frm.user.value; pass = document.frm.pwd.value; window.location = &quot;ftp://&quot; + user +...
  6. hoolz

    Getting a quotation mark from a print/text value

    Hello, I have a text box that I need to have quotation marks appear in once a button is pressed..for example: Private Sub cmdButton_Click() txtField.Text = &quot;Adam strolled across the street and said &quot;hello there!&quot; with a pompous attitude.&quot; End Sub I have no idea how to...
  7. hoolz

    vbscript and forms

    nevermind, i fixed it...i found that if you do a javascript form reset during an onload that it'll fix it. cool. hurry up and wait! aim screenname: phentalmyst :D
  8. hoolz

    vbscript and forms

    hello, i need some help with a dynamic form i'm building and i'm still rather new to vbscript. i'm pulling a sentence from a database and into a form field text box. when i view the generated form, i only get the first word of the sentence in the text box (of course if i put in a nbsp between...
  9. hoolz

    Refreshing DIV contents in Tables :-(

    ok, i think ive got this figured out, but it may take a bit more work for ya if go this way. SPAN tags, and you have to absolute position them. so instead of: <table border=&quot;1&quot; bgcolor=&quot;Silver&quot;> <th>Total</th> <tr> <td><DIV class=&quot;tc&quot...
  10. hoolz

    Refreshing DIV contents in Tables :-(

    well, i wrote a SIMILAR working version for IE, except I replaced the table cell with a text box for it to be updated. this is the closest ive come to a solution so far. im trying! <html> <head> <title>test</title> <script language=&quot;javascript&quot;> <!-- function formUpdate(){ if...
  11. hoolz

    Refreshing DIV contents in Tables :-(

    hm, im honestly having trouble with the code you sent me in regards to it working in IE. im guessing this is just an app that updates the total as you add to it? hurry up and wait! aim screenname: phentalmyst :D
  12. hoolz

    Action when user hits the back button

    ack!! i totally didnt think of that. um, hmm..do me a favor, if you will, and explain to me the reasoning behind needing to go back to a refreshed page, that way maybe i could come up with something else. thanks! hurry up and wait! aim screenname: phentalmyst :D
  13. hoolz

    Action when user hits the back button

    the simplest way, but maybe not most effecient, would be to write an onload refresh function for the page that requires the refresh. keep in mind you could go to that page from anywhere and it would still refresh upon loading, but that is still a way of acheiving this. if you want to get a...
  14. hoolz

    Refreshing DIV contents in Tables :-(

    I've learned from experience that class tags doubled with ids dont work well together in netscape. if its possible in your situation, try merging the class and id values into one, which may be some tedious work, and then just use the id tag, which netscape works better with. hope this helps...
  15. hoolz

    Changing Color With CSS

    Hello, unfortunately I dont think its possible to &quot;change&quot; the color of the outline and arrow portions of a drop down menu, and actually, changing the background color doesnt always work in netscape. however, you could always recreate the dropdown menu in flash and that way you could...
  16. hoolz

    Flash movie that works for all resolutions?

    hello, your best bet would be to set the size of the flash movie to percentages (ie width=&quot;100%&quot; height=&quot;100%&quot;), and because flash uses vector images, they will scale cleanly. you may also want to consider puttin in a top or bottom surrounding html frame and set the...
  17. hoolz

    table widths

    im guessing your table is set up like this... 1 2 3 4 those numbers representing individual tables cells, with your connecting image in cell 1. the cool trick you can use is to only set the table width to 100& and duplicate the image you are using in cell 2. use one as the actually...

Part and Inventory Search

Back
Top