View Single Post
Old 09-03-2008, 03:26 PM   #5 (permalink)
StealthTools
StealthTools's Avatar
 
Hardware/VB.net/Anti-vir

Join Date: Mar 2008

Location: TN - Intel, Samsung, and NVIDIA 4 EvR!

Posts: 515

StealthTools is on a distinguished road

Send a message via MSN to StealthTools
Default Re: VB help, trying to start program

In vb.net I believe you can just use this to start your programs:
Example:
Code:
Process.Start("c:\MyFile.txt")
You may also use:
Code:
shell("myfile.exe")  
  1. 'if the project u will make will be built in C:\
  2. beside that ,use'
  3. system.diagonestic.process.start("c:\myfile.exe")
  4. 'and it can be also used in opening sites if u typed the url instead of c:/...'
Hope that helps.
Note: I am upgrading to VB.net

Last edited by StealthTools; 09-03-2008 at 03:31 PM.
StealthTools is offline