|
-
Mar 12th, 2012, 05:04 AM
#1
Thread Starter
Member
Difference Shell / process start?
You can start an application two ways you can shell the application or you can process start.
Dim shell
shell = CreateObject("wscript.shell")
shell.run("%SystemDrive%\application.exe")
or
Process1.StartInfo.FileName = ("%SystemDrive%\application.exe")
What is the difference between these two approaches?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|