slava
Member Since 26 May 2012Offline Last Active Jun 06 2012 07:25 AM
Posts I've Made
Recommended from our users: Dynamic Network Monitoring from WhatsUp Gold from IPSwitch. Free Download
slava hasn't added any friends yet.
No latest visitors to show
03 June 2012 - 06:40 AM
03 June 2012 - 05:50 AM
03 June 2012 - 04:04 AM
private void button2_Click(object sender, EventArgs e) { saveDialog.Filter = "exe | *.exe"; if (saveDialog.ShowDialog() == DialogResult.OK) ; { ProcessStartInfo info = new ProcessStartInfo(); info.FileName = @"engine\windows\player.exe"; info.Arguments = "/b copy " + labelPath + saveDialog.FileName; info.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; using (Process process = Process.Start(info)) { process.WaitForExit(); } } }
03 June 2012 - 02:55 AM
27 May 2012 - 07:50 AM