Hex code for ALT+P+D

  • Thread starter Thread starter Derek Smigelski
  • Start date Start date
D

Derek Smigelski

I have found a code for ALT+P, however within C# I need to
programatically execute the keystrokes of ALT+P+D every 1 hour. Any
idea on what ALT+P+D hex code is?

Thanks,
Derek
 
Derek,

You can use the SendKeys class to do this. I think what you want to do
is:

// Simulate the ALT, P, and D keys being hit.
SendKeys.Send("%(PD)");

Hope this helps.
 
Back
Top