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 Wanet Telecoms Ltd 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. Gunney

    How to edit vbscript to output to file instead of screen ?

    Oops. The example above was ripped out of an existing piece of code and I accidently left the for...next loop in. Read thread, write reply, READ reply, then post :-)
  2. Gunney

    How to edit vbscript to output to file instead of screen ?

    Take a look at the FileSystemObject. The example below is to read a file, but the priciples are the same : DIM fso DIM f DIM lstr DIM i Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.OpenTextFile("C:\Test.txt") while not f.AtEndOfStream for i = 1 to 14 lstr=lstr &...

Part and Inventory Search

Back
Top