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: *

  • Users: justinbcti
  • Order by date
  1. justinbcti

    close window after print

    You're getting the flash because the browser is quicker than the print command in the system. As soon as the browser sends the print command to the system, it moves on and focuses on the parent. Then when the print command gets around to opening, it has to go back to the child window so it can...
  2. justinbcti

    save to file - network drive

    You may want to check with your network administrator about security settings because many networks have safeguards against web pages writing to drives. This is to prevent hackers from filling up network drives with garbage.
  3. justinbcti

    How do I make my PopUp window stay on top?

    I don't know anything about ASPX, but if you want you can use javasdript to keep the page on top. Do something like this: <html> <head> <title>Test Page</title> </head> <body onblur="self.focus()"> <p>Some content here</p> </body> </html> This works in IE and will keep the window on top of the...
  4. justinbcti

    document.forms[0].submit() doesn't always submit!

    Actually, I solved the problem. It was ignoring the "return false" code because when I called the function in my HTML code, I left out the "return" so it should have been "return keyCheck(event)" instead of just "keyCheck(event)". Anyway, thanks for your help. By the way, I took out the URL in...
  5. justinbcti

    document.forms[0].submit() doesn't always submit!

    Not sure where to put this, so I'll add it here and maybe some replies will help me move it. I have a script (see below) which detects the key code using "onKeyPress". It works, but when I use the "return false" code to stop the form from submitting (if the enter key is pressed) Safari ignores...

Part and Inventory Search

Back
Top