CoolVisual Basic .NET file protector

Posts 1622 of 22 · Page 2 of 2
Code:
system.diagnostics.process.start
?...
umm, seems a bit long...
personly, i use
Code:
shell("exename.exe")
Quote Originally Posted by *****179 View Post
Code:
system.diagnostics.process.start
?...
umm, seems a bit long...
personly, i use
Code:
shell("exename.exe")
this is for open a page of internet, for open for example mpgh =
Code:
system.diagnostics.process.start("http://www.mpgh.net")
Can still use shell....
shell("explorer.exe", "www.mpgh.net")
can replace explorer with any browser.exe path....
Quote Originally Posted by *****179 View Post
Can still use shell....
shell("explorer.exe", "www.mpgh.net")
can replace explorer with any browser.exe path....
Process.Start is still better. It will open the page with the default program for handling the extension (in this case a .html page will be opened in the default browser. It also is more flexible.
more flexible than direct shell?...
Quote Originally Posted by *****179 View Post
more flexible than direct shell?...
Yes, more flexible.
Quote Originally Posted by *****179 View Post
more flexible than direct shell?...
Duh. Look at how flexible it is!

Shell: 120 combinations
System.Diagnostics.Process.Start: 2.63130837 × 10^35

And lastly, have you looked at the overloads and properties of System.Diagnostics.Process.Start, and compared it to Shell()?
Posts 1622 of 22 · Page 2 of 2

Post a Reply

Tags for this Thread

Need help?