Using an Executable from within VB or VS.NET

  • Thread starter Thread starter citationcj2
  • Start date Start date
C

citationcj2

Hi All,

I am trying to add an executable ass a resource and call the executable to start when I push a button.
I am trying not to SHELL out to the .exe.

Is this possible and if it is, How?

Thanks
 
I'm no expert so this could be completely wrong but you may want to look at:
System.Diagnostics.Process.Start
 
* Robert ([email protected]) scripsit:
I am trying to add an executable ass a resource and call the executable to start when I push a button.
I am trying not to SHELL out to the .exe.

You will have to extract the executable file and use 'Shell' or
'System.Diagnostics.Process.Start' to start it.
 
Back
Top