Creating a Serial Port in code in VB.net - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T09:36:10Zhttp://stackoverflow.com/feeds/question/329865http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/329865/creating-a-serial-port-in-code-in-vb-net3Creating a Serial Port in code in VB.netbobert50642008-12-01T02:25:48Z2008-12-02T21:42:57Z
<p>Hi,</p>
<p>I am trying to create a serial port in VB.net using code only. Because I am creating a class library I cannot use the built-in component. I have tried instantiating a new SeialPort() object, but that does not seem to be enough. I'm sure there is something simple I am missing and any help would be greatly appreciated! Thanks! </p>
<p>P.S. I should add that the problem I am having at this time is getting the code to handle the datareceived event. Other than that it might be working, but I can't tell because of that problem.</p>
http://stackoverflow.com/questions/329865/creating-a-serial-port-in-code-in-vb-net/329877#3298770Answer by Hapkido for Creating a Serial Port in code in VB.netHapkido2008-12-01T02:37:32Z2008-12-01T02:37:32Z<p>I have used the SerialPort .Net class in a past project and I worked fine. You really don't need anything else. Check the hardware setting in the control panel and make sure you instantiate the class with the same parameters.</p>
http://stackoverflow.com/questions/329865/creating-a-serial-port-in-code-in-vb-net/329894#3298941Answer by BCS for Creating a Serial Port in code in VB.netBCS2008-12-01T02:50:19Z2008-12-01T02:50:19Z<p>I found <a href="http://msmvps.com/blogs/coad/archive/2005/03/23/SerialPort-_2800_RS_2D00_232-Serial-COM-Port_2900_-in-C_2300_-.NET.aspx" rel="nofollow">this article</a> to be quite good.</p>
<p>The code i wrote from it is:</p>
<pre><code>port = new System.IO.Ports.SerialPort(name, 4800, System.IO.Ports.Parity.None, 8, System.IO.Ports.StopBits.One);
port.DataReceived += new System.IO.Ports.SerialDataReceivedEventHandler(port_DataReceived);
port.Open();
void port_DataReceived(object sender, System.IO.Ports.SerialDataReceivedEventArgs e)
{
buffer = port.ReadLine();
// process line
}
</code></pre>
<p>Sorry it's C# but...</p>
<p>The only issue I have with it is if the port is dropped while it's open, the app seems to fail on exit.</p>
http://stackoverflow.com/questions/329865/creating-a-serial-port-in-code-in-vb-net/331870#3318703Answer by dilbert789 for Creating a Serial Port in code in VB.netdilbert7892008-12-01T19:15:34Z2008-12-02T21:40:20Z<p>If you want to use the events make sure you declare your serialPort object using the 'withevents'. The below example will allow you to connect to a serial port, and will raise an event with the received string. </p>
<pre><code>Imports System.Threading
Imports System.IO
Imports System.Text
Imports System.IO.Ports
Public Class clsBarcodeScanner
Public Event ScanDataRecieved(ByVal data As String)
WithEvents comPort As SerialPort
Public Sub Connect()
Try
comPort = My.Computer.Ports.OpenSerialPort("COM5", 9600)
Catch
End Try
End Sub
Public Sub Disconnect()
If comPort IsNot Nothing AndAlso comPort.IsOpen Then
comPort.Close()
End If
End Sub
Private Sub comPort_DataReceived(ByVal sender As Object, ByVal e As System.IO.Ports.SerialDataReceivedEventArgs) Handles comPort.DataReceived
Dim str As String = ""
If e.EventType = SerialData.Chars Then
Do
Dim bytecount As Integer = comPort.BytesToRead
If bytecount = 0 Then
Exit Do
End If
Dim byteBuffer(bytecount) As Byte
comPort.Read(byteBuffer, 0, bytecount)
str = str & System.Text.Encoding.ASCII.GetString(byteBuffer, 0, 1)
Loop
End If
RaiseEvent ScanDataRecieved(str)
End Sub
End Class
</code></pre>
http://stackoverflow.com/questions/329865/creating-a-serial-port-in-code-in-vb-net/335571#3355710Answer by bobert5064 for Creating a Serial Port in code in VB.netbobert50642008-12-02T21:42:57Z2008-12-02T21:42:57Z<p>Thank you all for your help, especially the answer about instantiating a class using the WithEvents keyword.</p>
<p>I found a really great article that explains how to create a manager class for the serial port. It also discusses sending Binary as well as Hex data to the serial port. It was quite helpful.</p>
<p><a href="http://www.dreamincode.net/forums/showtopic37361.htm" rel="nofollow">http://www.dreamincode.net/forums/showtopic37361.htm</a></p>