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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top