Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. Set fso= CreateObject("Scripting.FileSystemObject")
  2. Set f = fso.GetFolder("C:LIBS")
  3. Set fc = f.files
  4. For Each singlefile in fc
  5. msgbox singlefile.name
  6. Next
  7.  
  8. Set QtAp = CreateObject("QuickTest.Application")
  9. QtAp.Open "C:Sometest
  10. Set QtLib = QtAp.Test.Settings.Resources.Libraries
  11. QtLib.RemoveAll
  12. QtLib.Add "filepath",-1
  13. QtAp.Test.Run
  14.  
  15. Set fso= CreateObject("Scripting.FileSystemObject")
  16. Set f = fso.GetFolder("C:LIBS")
  17. Set fc = f.files
  18. For Each singlefile in fc
  19.  
  20. executeFile(singlefile.name)
  21.  
  22. Next
  23.  
  24. Set fso= CreateObject("Scripting.FileSystemObject")
  25. Set f = fso.GetFolder("C:LIBS")
  26. Set fc = f.files
  27.  
  28. For Each singlefile in fc
  29.  
  30. LoadFunctionLibrary (singlefile.name)
  31.  
  32. Next
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement