Invoking apps within VB

  • Thread starter Thread starter Al_C
  • Start date Start date
A

Al_C

Hi,
We have a few apps that we would like to invoke from withing our program.
Suggestions? Should I create a seperate thrread to run the app in.
The idea is to call excel for example from within our vb.exe
Thanks in advance,
Al
 
No you don't have to use threads... Just use System.Diagnostics.Process ,
class that should get you to open applications outside of your application,
using this you can call the FilePath or any executable path...

if you are looking to opening excel or word files within your application,
then use the WebBrowser Control

Vijay
 

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