Sign in to follow this  
shinaito

<VB.Net> How do I make an exe file open other exe files?

Recommended Posts

How do I make an exe file open another exe file? I'm gonna make a multi-checker which uses another exe file when another module is used. How do I make it open another exe file?

Thanks in advance.

Share this post


Link to post
Share on other sites

You can use the System.Diagnostics lib.

 

 

// C#:
using System.Diagnostics;
Process.Start("myapp.exe");
// VB:
Imports System.Diagnostics
Process.Start("myapp.exe")

 

:ezy: :ezy:

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this