Guest User

Untitled

a guest
Jan 16th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. file = new ActiveXObject("Scripting.FileSystemObject");
  2.  
  3. // Sets the variable "f" to equal the new open file contents
  4.  
  5. f = file.OpenTextFile("c:\wantlist.txt", 1);
  6. s = f.ReadLine()
  7.  
  8. While(s != EOF)
  9. {
  10. //. Do some thing
  11. s = f.ReadLine()
  12. }
  13.  
  14. f.AtEndOfStream
Add Comment
Please, Sign In to add comment