0

Whenever button is clicked, key Ctrl+F1 should be pressed.

I found solution of the reverse process everywhere.

Supun Wijerathne
  • 11,964
  • 10
  • 61
  • 87

1 Answers1

3

You need to: System.Windows.Forms.SendKeys.Send("^{F1}");

Full MSDN SendKeys documentation here

Murray Foxcroft
  • 12,785
  • 7
  • 58
  • 86