RDP ActiveX Ctrl + Alt + Del

In our C # application, we are using an RDP viewer as an ActiveX control. The app has its own toolbar with a Ctrl+ Alt+ button Del. The ActiveX control does not appear to exist to perform this function. I know you can press Ctrl+ Alt+ on your keyboard End, but that's okay, but how do I do that using a button on the toolbar?

0


a source to share


1 answer


Try using the SendKeys class .

In this example, you can send CTRL+ ALT+ ENDlike this:



 SendKeys.Send("(^%{END})");

      

+1


a source







All Articles