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 IamaSherpa 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: removeme
  • Order by date
  1. removeme

    Setting focus between 2 browser sessions

    In the body tag of the help page add OnLoad="this.focus()" this should bring the window to the top. RnK
  2. removeme

    how do you tell when a form element has focus?????

    I think your best option would be to use the onFocus event handler to set a variable based on the current position. <INPUT TYPE=&quot;button&quot; VALUE=&quot;Move Next&quot; onFocus=setPos(1)> and then have a variable defined globally to hold the position. <SCRIPT> var currPos; function...
  3. removeme

    Where can I get a reference guide

    Here is a good referance that I use often: http://www.devguru.com/Technologies/ecmascript/quickref/javascript_intro.html or if you prefer books JavaScript the Definative Guide from O'REILLY is a good one. RnK
  4. removeme

    Variable problem w/VBscript

    The reason why the script will not work is because the Date function returns &quot;7/3/01&quot; by default and the file system will not allow the &quot;/&quot; in a file name. I added a new variable Dim newFolder Set the value to the path and formated the date to remove the &quot;/&quot...
  5. removeme

    How Do I Varify A Username?

    Do you have the ability to run server side script? If not here are some links to password scripts that you might want to try. However client side passwords and usernames are not hard to retrieve. http://javascriptcity.com/scripts/pass1.htm RnK
  6. removeme

    Hide History

    I think you will need to set the URL from the referring page to: <A HREF=javascript:window.location.replace(&quot;your.pdf&quot;)> This should replace the page without adding it to the history object. Hope this helps. RnK
  7. removeme

    Reading Client Email Address from browser

    Thanks I didn't think you could but we have a member who claims to have received emails after using one of the on our web site (http://www.esl.org) provided to us by a vendor and I just wanted to make sure they were not violating our privacy policy. Thanks RnK
  8. removeme

    Reading Client Email Address from browser

    Is it possible to read the client email address from the browser information (IE stores it in Tools|Internet Options|Content|My Profile and NN stores it under Edit|Preferances|Mail&Newsgroups|Identity) with an Applet? I don't need to know how I just need to know if it is possible. Thanks RnK

Part and Inventory Search

Back
Top