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 Chris Miller 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. thescriptlibrarycom

    Need to open an App and wait until it it closed...HELP!

    Both good methods. Also.. the .run method has built in support for waiting for a process to complete. Set WshShell = WScript.CreateObject("WScript.Shell") strCommand = "notepad.exe" WaitForProcess = True WshShell.Run strCommand, 1, WaitForProcess You could test for the flagfile, if it...
  2. thescriptlibrarycom

    How to get links using document.getelementsbyTag('a")

    here you go, this will give you the url as well: Set ie = CreateObject("InternetExplorer.Application") ie.Visible = TRUE ie.Navigate("http://www.adsentry.net/form.htm") Do until ie.ReadyState = 4 WScript.Sleep 50 Loop set urls = ie.document.all.tags("a") For x = 0 to (urls.length)-1...

Part and Inventory Search

Back
Top