CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2010
    Posts
    17

    Exclamation Please help me out , TCP Receive data

    HI all ,

    I make simple electronic module witch connect to modem and send data to server appliction has been made by vb6 , now when huge data come i cant receive the data from my module but with normal data it is ok , i was thing it my module problem ,but when i test income data with Hercules TCP application , it work great and receive all data ....

    now this what write when the data arrive

    Code:
    Private Sub Winsock1_DataArrival(ByVal bytesTotal As Long)
      Dim strdata As String
         Winsock1.GetData strdata
          txtIn = txtIn & strdata & vbCrLf    
    End Sub
    where is my problem please help me out

  2. #2
    Join Date
    Dec 2001
    Posts
    6,332

    Re: Please help me out , TCP Receive data

    What happens when a large amount of data arrives? Is there an error?
    Please remember to rate the posts and threads that you find useful.
    How can something be both new and improved at the same time?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured