↧
Answer by Preza8 for How to force a process to be started by another process
You can run your App by using System.Diagnostics.Process.Start("", "TestString");The first string is the path of App you want to start, something like "C:/AppName.exe" and the second string is any text...
View ArticleAnswer by Geeky Guy for How to force a process to be started by another process
Windows forms applications also have a main method, which can take parameters. You could read some parameter, and if it doesn't conform to your rules, you can either keep the form from opening...
View ArticleHow to force a process to be started by another process
I have an AutoUpdater application that launches another application. Is there anyway to force that second application to ONLY run if it was started by the AutoUpdater?The problem is, some end-users...
View Article