Hello! I'm a beginner in the worl of C++. I'm building a program that acts as a launcher for a game. In it I have Start and Exit button. What I want the Start button to do is start an .exe with extra conditions: IP and Port.
if (nResponse == IDOK)
{
// Code when hit Start
}
Code what I want to enter is:
dklegend.exe NEWSTART Futec(***********:9909)
How should I have my if condition written to make this happen?
The app is an MFC!