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 John Tel 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: dick606
  • Content: Threads
  • Order by date
  1. dick606

    navigating websites through VBA

    here is a snippet of my code:set ie = createobject("internetexplorer.application") ie.navigate me.website while ie.busy do events wend ie.document.forms(me.formnumber).item("username") = me.username ie.document.forms(me.formnumber).item("password") = me.password...
  2. dick606

    Opening Multiple Files in Vista MS DOS

    Here is my batch file: Q: cd DIRECTORY "FILE 1" "FILE 2" "FILE 3" "FILE 4" "FILE 5" "FILE 5" "FILE 5" "FILE 6" i AM GETTING the first file to open in excel, but the rest of them will not open. It will freeze on the first one, and not open the next one in the list until I close excel first...
  3. dick606

    Navigating IE through the DOS prompt

    Hi Folks. Here is some code to navigate automatically through IE in Visual Basic:Function FillGoogle() Dim ie As Object Set ie = CreateObject("internetexplorer.application") ie.Navigate "http://www.google.com" ie.Visible = True While ie.busy DoEvents 'wait until IE is done...

Part and Inventory Search

Back
Top