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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by skibascott

  1. skibascott

    NAV 7.5 parent server rename

    Thanks for the reply LawnBoy. I also just found this document on the symantec website that shows how to restore communications between client and server after renaming the parent server. http://service1.symantec.com/SUPPORT/ent-security.nsf/pfdocs/2003022009543548?Open&dtype=corp
  2. skibascott

    NAV 7.5 parent server rename

    I am about to change the computer name of our parent server. When this has been completed will I need to update the clients in order for them to connect to this parent server. Only the computer name and possibly the ip address of this server is changing. If I do have to update the clients...
  3. skibascott

    page design advice needed

    I am about to create a webpage that is basically a spreadsheet. The some of the fields will submit data to a sql database after user input and others will be getting data from a sql database. It is for the company intranet. I will use asp to connect to the databases. What is the best way...
  4. skibascott

    setTimeout pass arguments

    You rock. Thank you. Works perfect.
  5. skibascott

    setTimeout pass arguments

    Ok. Thanks. That works, except that it tears the value of my variable to shreds. Without the timeout, the openps variable passes a string like this: /s /h /p \\server13a\apps\Process Sheets\tempsheets\8576.pdf When using the timeout, the value is turned into this: /s /h /p...
  6. skibascott

    setTimeout pass arguments

    Still nothing. Everything works the way it should until I put that variable into the call. Then I get the Expected ')' error. Thanks for trying.
  7. skibascott

    setTimeout pass arguments

    It is a variable. When using: setTimeout("ShellReader(" + openps + ")",5000); I get the error: Expected ')'
  8. skibascott

    setTimeout pass arguments

    Maybe I don't quite understand your post, but "openps" is the variable that i want to pass. Using this: setTimeout("ShellReader(openps)",5000); returns an error saying that openps is undefined. When calling the function w\o the timeout, it works fine.
  9. skibascott

    setTimeout pass arguments

    Is it possible to pass arguments when using setTimeout? If so , what is the syntax? setTimeout("ShellReader(openps)",5000);
  10. skibascott

    pass value to new window

    I thank both of you for your suggestions. I used the "self.opener" code to reference the variables. Works great.
  11. skibascott

    pass value to new window

    I am trying to use variables from the main page in standards.htm. Thanks.
  12. skibascott

    pass value to new window

    I am looking for an explanation about clflava's post.
  13. skibascott

    pass value to new window

    Could you please explain this a bit?
  14. skibascott

    pass value to new window

    I am opening a new window with this code: newWin = window.open('standards.htm', 'standards'); This standards.htm doc is an existing doc with more code in it. I need to use the values of four text fields in standards.htm. Can I reference these fields with javascript code? Or do i need to...
  15. skibascott

    app.viewerVersion

    I need to add code to a webpage that will determine the version of acrobat reader installed. My research shows that the following will do the job: var version = app.viewerVersion; if (version >= 6) // only do this if 5 or greater // { document.write("you have version 6") } When i run...

Part and Inventory Search

Back
Top