Can someone help me to configure the following?
1) If the trial days = 0, show TurboActivate.exe2) If "Ask Me Later" is chosen, the application closes.
I have this, but I'm not sure how to configure the app closure.
private void DisableAppFeatures() { Process TAProcess = new Process { StartInfo = { FileName = Path.Combine(Path.GetDirectoryName(Application.ExecutablePath), "TurboActivate.exe") }, EnableRaisingEvents = true };
TAProcess.Exited += p_Exited; TAProcess.Start();
//Application.Exit(); }