SendKeys on Remote Desktop

  • Thread starter Thread starter Matthias
  • Start date Start date
M

Matthias

Hey,

We are trying to determine why a Remote Desktop is not
accepting keystrokes generated by SendKeys (also look at
the screenshot). We are aware that using SendKeys is not
the best option for sending keystrokes but in this
situation the keystrokes are generated by a barcode
scanner, and our applications are designed to handle
keystrokes (usually run at the local machine).


If there is no solution we will have to include extra
programming, but we are trying to avoid that.



screenshot at:
http://gradict.kahosl.be/matthias.braekevelt/stage/screens
hot.JPG


' start Code
Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
me.Timer1.Enabled = True
Me.Timer1.Interval = 5000

Private Sub Timer1_Tick(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles Timer1.Tick
SendKeys.SendWait("HELLO WORLD" + vbCr)
End Sub
' end Code
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Getting a timer to work 11
image and notifyicon problem 2
Scaling Graphics (Fractal) 1
Need a palette expert here 17
report a cf bug 9
System.UnauthorizedAccessException error 0
how to declare a button 1
Alarm Timer 3

Back
Top