Posts: 50
Threads: 7
Joined: Dec 2010
Reputation:
0
You can use:
Process.Start("c:\whateveruwanttorun.exe")
or
Shell("c:\whateveruwanttorun.exe) (don't know exactly of this one will work)
you can also put all the exe's from a directory in a listbox:
Dim exeArray As String() = FileIO.FileSystem.GetFiles(Application.StartupPath, 2, "*.exe").ToArray
ListBox1.Items.AddRange(exeArray)
and then run them for example from there by clicking on them.
---------------------------------------
Earn money for all your games!
<!-- m --><a class="postlink" href="http://www.cashle.com/us/1936/Earn-money-for-all-y">http://www.cashle.com/us/1936/Earn-money-for-all-y</a><!-- m -->
our-games?ref=ekel
---------------------------------------
Posts: 1,006
Threads: 111
Joined: Jul 2010
Reputation:
1
Yeah, LearningVB has it correct.
And is that how you use arrays? Wow... That could be helpful!