Is it possible to launch a C#.Net (2.0) application from an application written in C++???
Thanks,
EDIT: Cool - so I just have to know where the app is:
LPTSTR szCmdline = _tcsdup(TEXT("C:\\Program Files\\MyApp -L -S"));
CreateProcess(NULL, szCmdline, /* ... */);