Reputation: 9922
I want to write a convenient front-end to the old and ugly Win95 application. I nailed the problem to this:
1st and 5th items are easy, it is just the System.Diagnostics.ProcessStartInfo
stuff; but i have no idea where to start with the rest of items. How could it be done?
Upvotes: 1
Views: 1280
Reputation: 16575
Take a look at the windows automation framework, this is a good starter codeproject.com/Articles/141842/
Sorry for the delay.
Upvotes: 2
Reputation: 531
If it's not too much of an effort you could open up the executable in a disassembler (like ollydbg) and simply NOP the call to the messagebox. Then from C# you could simply wait for the process to exit instead of dismissing the messagebox using code.
Upvotes: 1