Re: Problem using Received Method with Active X (General questions)
Hi,
Yes, my last code will eat received lines.
When something comes to recive we can either show in ActiveX window or catch it on different way.
But you can do this, for example:
[code]
Private Sub wodTelnetDLX1_Received(ByVal ByteCount As Integer, Handled As Boolean)
Dim s As String
s = wodTelnetDLX1.Receive
wodTelnetDLX1.PrintText (s)
Text1.Text = Text1.Text & s
End Sub[/code]
Hope this will help and resolve your problems.
Regards,
Alan
Complete thread:
- Problem using Received Method with Active X - vbiggar, 2006-05-25, 08:24
- Re: Problem using Received Method with Active X - wodAlan, 2006-05-25, 09:39
- Re: Problem using Received Method with Active X - vbiggar, 2006-05-25, 12:33
- Re: Problem using Received Method with Active X - wodAlan, 2006-05-25, 13:04
- Re: Problem using Received Method with Active X - vbiggar, 2006-05-25, 13:24
- Re: Problem using Received Method with Active X - wodAlan, 2006-05-25, 13:04
- Re: Problem using Received Method with Active X - vbiggar, 2006-05-25, 12:33
- Re: Problem using Received Method with Active X - wodAlan, 2006-05-25, 09:39