How to simulate single key press is described here
How can I programmatically generate keypress events in C#?
But how can I simulate Ctrl-S combination?
How to simulate single key press is described here
How can I programmatically generate keypress events in C#?
But how can I simulate Ctrl-S combination?
This library on CodePlex allows you to simulate multiple keystrokes
Windows Input Simulator
InputSimulator.SimulateModifiedKeyStroke(VirtualKeyCode.CONTROL, VirtualKeyCode.VK_S);