Need to convert incoming bytes to chars, before saving it to temp buffer.

Rat

Well-known member
Joined
Aug 2, 2005
Messages
72
Location
Somewhere between 0 and 1
Programming Experience
1-3
VB.NET:
Dim receiveBytes As [Byte]() = receivingUdpClient.Receive(RemoteIpEndPoint)

this is the part that receives the bytes.

Currently, the output is being displayed on a rtb.

here's the code for that ..

VB.NET:
rtbInfo.Text = rtbInfo.Text & Encoding.ASCII.GetChars(receiveBytes)

I need to save the incoming message into a temp file, before i do the parsing .. because this has to be done in realtime, and this is the best way i can think of doing it.
 
Back
Top