Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
What's the best way to abort a cvs operation, i.e. give cvs.exe the opportunity to terminate gracefully? There are several options that I'm aware of: - Send WM_CLOSE to the console window (doesn't work on Win9x NT AFAIK) - User TerminateProcess() - Send Ctrl-C to the console window My guess is that Ctrl-C is the best choice, because cvs.exe traps Ctrl-C and performs some cleanup operations before exiting. Is that right? -Hartmut