473,511 Members | 16,846 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Serial Port / RS232

I have a slight problem. When attempting to receive data via my serial port
I sometimes do not get the complete data. For example, I have a scanner
that reads barcodes. When reading barcode after barcode, there might be 2
or 3 barcodes in a row where I do not get the complete barcode. It will be
split up over 2 lines.
Here is my code and an example of the data received is toward the bottom.

Dim WithEvents com1 As New SerialPort

Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs)
Handles Me.Load
Try
With com1
.PortName = "Com4"
.BaudRate = 9600
.Parity = Parity.None
.DataBits = 8
.StopBits = StopBits.One
End With
com1.Open()
Catch ex As Exception
MsgBox(ex.ToString)
End Try
End Sub

Private Sub com1_DataReceived(ByVal sender As Object, ByVal e As
System.IO.Ports.SerialDataReceivedEventArgs) Handles com1.DataReceived
Dim returnStr As String
returnStr = com1.ReadExisting 'ReadLine does not work. Any
reason why??
ReceiveSerialData(returnStr)
com1.DiscardInBuffer()
End Sub

Sub ReceiveSerialData(ByVal msg As String)
' Receive strings from a serial port.
CheckForIllegalCrossThreadCalls = False
TextBox1.Text &= msg & vbCrLf
End Sub

I cannot find anything about an EOM (End Of Message) character setting for
the Serial Port. My scanner is set up to send <CR><LFat the end of each
scan.

Here is an example of the data that I receive. I scanned 2 barcodes over
and over. You can see the barcodes are split up but I'm not sure what is
causing this. Any suggestions would be greatly appreciated.

036600826313

04740
0097742

036600826313

047400097742

036600826313

0474
00097742

036
600826313

047
400097742

036600826313

04740009
7742
Thank you all,
Tony

Mar 4 '07 #1
5 6647
Sorry! Nevermind. I jumped the gun here. My scanner was set up with a
Preamble to send a <CRand my Postamble was DISABLED. Now that I've fixed
those, I also removed the vbCrLf in my ReceiveSerialData. Everything works
great.

"Tony K" <ki********@NOSPAMcomcast.netwrote in message
news:1F**********************************@microsof t.com...
>I have a slight problem. When attempting to receive data via my serial
port I sometimes do not get the complete data. For example, I have a
scanner that reads barcodes. When reading barcode after barcode, there
might be 2 or 3 barcodes in a row where I do not get the complete barcode.
It will be split up over 2 lines.
Here is my code and an example of the data received is toward the bottom.

Dim WithEvents com1 As New SerialPort

Private Sub Form1_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
Try
With com1
.PortName = "Com4"
.BaudRate = 9600
.Parity = Parity.None
.DataBits = 8
.StopBits = StopBits.One
End With
com1.Open()
Catch ex As Exception
MsgBox(ex.ToString)
End Try
End Sub

Private Sub com1_DataReceived(ByVal sender As Object, ByVal e As
System.IO.Ports.SerialDataReceivedEventArgs) Handles com1.DataReceived
Dim returnStr As String
returnStr = com1.ReadExisting 'ReadLine does not work. Any
reason why??
ReceiveSerialData(returnStr)
com1.DiscardInBuffer()
End Sub

Sub ReceiveSerialData(ByVal msg As String)
' Receive strings from a serial port.
CheckForIllegalCrossThreadCalls = False
TextBox1.Text &= msg & vbCrLf
End Sub

I cannot find anything about an EOM (End Of Message) character setting for
the Serial Port. My scanner is set up to send <CR><LFat the end of each
scan.

Here is an example of the data that I receive. I scanned 2 barcodes over
and over. You can see the barcodes are split up but I'm not sure what is
causing this. Any suggestions would be greatly appreciated.

036600826313

04740
0097742

036600826313

047400097742

036600826313

0474
00097742

036
600826313

047
400097742

036600826313

04740009
7742
Thank you all,
Tony
Mar 4 '07 #2
OK.

I had written a reply that included (with some example code -- since your
code is working, Ill include the other thoughts):

ReadLine returns data (blocking) only AFTER a newline (default is carriage
return plus line feed). I never use ReadLine. I always use ReadExisting
(or Read), and look for whatever specific terminating character I need.

Don't discard anything -- else something received while you are processing a
part of a read will go somewhere less than useful. As soon as you read
data, you have cleared that data, subsequent data may be buffered WHILE this
process is executing.

Dick

--
Richard Grier, MVP
Hard & Software
Author of Visual Basic Programmer's Guide to Serial Communications, Fourth
Edition,
ISBN 1-890422-28-2 (391 pages, includes CD-ROM). July 2004, Revised March
2006.
See www.hardandsoftware.net for details and contact information.
Mar 5 '07 #3
Dick,
If you don't mind I'd like to see some of your example code. Maybe I can
modify my code to complete this in a better way. The examples I've found on
MSDN just haven't been as clear as I'd like.

Thanks,
Tony

"Dick Grier" <dick_grierNOSPAM@.msn.comwrote in message
news:eB**************@TK2MSFTNGP05.phx.gbl...
OK.

I had written a reply that included (with some example code -- since your
code is working, Ill include the other thoughts):

ReadLine returns data (blocking) only AFTER a newline (default is carriage
return plus line feed). I never use ReadLine. I always use ReadExisting
(or Read), and look for whatever specific terminating character I need.

Don't discard anything -- else something received while you are processing
a part of a read will go somewhere less than useful. As soon as you read
data, you have cleared that data, subsequent data may be buffered WHILE
this process is executing.

Dick

--
Richard Grier, MVP
Hard & Software
Author of Visual Basic Programmer's Guide to Serial Communications, Fourth
Edition,
ISBN 1-890422-28-2 (391 pages, includes CD-ROM). July 2004, Revised March
2006.
See www.hardandsoftware.net for details and contact information.
Mar 7 '07 #4
Other events can happen while serial data is being received. Your best bet is to append new data to a string until the desired terminator is received. Handle the message and remove it from the the string. In some instances more data can arrive while (or before)handling the previous terminated message. You must preserve this data or the subsequent message will be incomplete.
Mar 7 '07 #5
Other events can happen while serial data is being received. Your best bet is to append new data to a string until the desired terminator is received. Handle the message and remove it from the the string. In some instances more data can arrive while (or before)handling the previous terminated message. You must preserve this data or the subsequent message will be incomplete.
Mar 7 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2478
by: Paweł Chrobak | last post by:
Hi How to take access to serial port (rs232) ?? Is't possible?? Just tell me guy's where I can take o look Now I work under Windows XP but finally I need to make script to communicate witch...
2
8783
by: fdunne2 | last post by:
Hi, I need to interface a signal generator with my computer's serial port ( to set the frequency, level etc using the appropriate byte codes). How can I send and receive (acknowledge the message...
3
7898
by: Ramakant Kasar | last post by:
Hi, If an application is reading data from a serial port, How can I open the same serial port with another application? Any idea? Please help. Thanks, Ramakant K.
4
2704
by: leovg | last post by:
Can I access the serial port (RS232) out of an ASP.NET 2.0 client form? We are planning a barcode application where a barcode scanner delivers input to an ASP.NET form via RS232.
4
11156
by: joe bloggs | last post by:
I am writing a mobile application to interface with a legacy system and I am planning to use web services to communicate with this system. The legacy system receives data through a serial port. ...
1
1750
by: David | last post by:
I have written an application in VB.NET 2003 that uses the SAX serial component for RS232 communications with hardware. The program sets up 2 serial ports so that it can talk to 2 different...
4
5494
by: Dave Harry | last post by:
I found the RS232 class from MS's 101 VB samples. Writing to the port works fine. (I've got hyperterminal on the other comm port and a crossover cable between COM1 and COM2) The port is opened...
3
18067
by: Mikegtr | last post by:
I need to collect and send data from a rs232 device- it is a simple temperature controller. I need to be able to collect actual temperature ,store the result in database (mysql) and show it in...
2
5413
by: colin | last post by:
Hi, Im having a tiresome amount of trouble with using a bluetooth serial link. The receiving end is a bluetooth-rs232 module conected to my embeded system. The PC has a little usb bluetooth...
0
7138
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7355
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
5668
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5066
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4737
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3225
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1576
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
781
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
447
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.