shinaito 3 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. Quote Share this post Link to post Share on other sites
Plоt 7 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: Quote Share this post Link to post Share on other sites