TheAhmedRmdan
TheAhmedRmdan

Reputation: 3

Linking an .exe file in vb.net project

I'm working on a VisualBasic project (its my first), and I wanted to ask:

How can I link an .exe file with the project?

Example: When the user opens the project, the .exe file also opens.

Easy I think (I'm newbie!)

Upvotes: 0

Views: 415

Answers (1)

Jeff
Jeff

Reputation: 61

To start another application in your application, use Process.Start

Example:

Process.Start("C:\MyApplication.exe")

I hope it will help you.

Upvotes: 1

Related Questions