|
-
Jul 31st, 2000, 10:50 AM
#1
Thread Starter
Member
Hello all. I'm making a simple client application that sends keystrokes to a server (it's an exchange server if anyone cares to know) everytime a key is pressed in a text box. Here is what the code looks like:
Private Sub txtSend_KeyPress(KeyAscii As Integer)
tcpClient.SendData Chr$(KeyAscii)
End Sub
Here is the problem: characters are being sent just fine, but when I press enter (code: 13) the server doesn't pick up on it. What am I doing wrong?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|