Posts by MMJ • 111 points
2 posts
-
0
votes1
answer43
viewsA: Vbscritp wait one process to finish and start another without Sleep
Use the "Run" method of the Shell Object, with the properties adjusted accordingly. See the code below: CreateObject("Wscript.Shell").Run """C:\Program Files\ABC\abc.xex""", 0, True The first…
-
1
votes4
answers28968
viewsA: What is the most appropriate way to concatenate strings?
No doubt, use concat() or join() to join small pieces of string. To concatenate something like several large phrases/lines (whether inside or outside a loop) consider using StringBuilder. Just use…