Click here to Skip to main content
15,890,527 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: Serial Port Data Received Events Pin
Office Lineman30-May-06 7:18
Office Lineman30-May-06 7:18 
GeneralRe: Serial Port Data Received Events Pin
elcheah30-May-06 23:13
elcheah30-May-06 23:13 
GeneralRe: Serial Port Data Received Events Pin
Office Lineman31-May-06 5:42
Office Lineman31-May-06 5:42 
GeneralRe: Serial Port Data Received Events Pin
elcheah31-May-06 17:08
elcheah31-May-06 17:08 
GeneralRe: Serial Port Data Received Events Pin
Office Lineman31-May-06 19:52
Office Lineman31-May-06 19:52 
GeneralRe: Serial Port Data Received Events Pin
elcheah31-May-06 21:50
elcheah31-May-06 21:50 
GeneralRe: Serial Port Data Received Events Pin
Office Lineman1-Jun-06 7:06
Office Lineman1-Jun-06 7:06 
GeneralRe: Serial Port Data Received Events Pin
elcheah1-Jun-06 16:35
elcheah1-Jun-06 16:35 
This is how I open a com port
<br />
       With serialPort<br />
          .ReceivedBytesThreshold = 1<br />
          .PortName = "COM3"<br />
          .BaudRate = 9600<br />
          .Parity = IO.Ports.Parity.None<br />
          .DataBits = 8<br />
          .StopBits = IO.Ports.StopBits.One<br />
       End With<br />
       serialPort.Open()<br />

and detect my com port using
For i As Integer = 0 To My.Computer.Ports.SerialPortNames.Count - 1<br />
         combobox.Items.Add(My.Computer.Ports.SerialPortNames(i))  <br />
      Next


after i open the COM port, i try to scan in some input won't trigger DataReceived events, anything that i have done wrongly? or anything i should set?Confused | :confused:
GeneralRe: Serial Port Data Received Events Pin
elcheah1-Jun-06 20:20
elcheah1-Jun-06 20:20 
GeneralRe: Serial Port Data Received Events Pin
elcheah2-Jun-06 0:10
elcheah2-Jun-06 0:10 
GeneralRe: Serial Port Data Received Events Pin
Office Lineman2-Jun-06 6:24
Office Lineman2-Jun-06 6:24 
QuestionProtecting a .Net app and implementing a trial period - how? [modified] Pin
nzmike28-May-06 17:04
nzmike28-May-06 17:04 
AnswerRe: Protecting a .Net app and implementing a trial period - how? [modified] Pin
nzmike31-May-06 17:20
nzmike31-May-06 17:20 
AnswerRe: Protecting a .Net app and implementing a trial period - how? [modified] Pin
Eric Dahlvang1-Jun-06 3:23
Eric Dahlvang1-Jun-06 3:23 
AnswerRe: Protecting a .Net app and implementing a trial period - how? [modified] Pin
jkirkerx4-Jun-06 11:10
professionaljkirkerx4-Jun-06 11:10 
Questionhow to add custom property to datagridview.columns? Pin
ianoseb28-May-06 11:58
ianoseb28-May-06 11:58 
QuestionWindows Vista and Audio/Video functions Pin
[DK]KiloDunse27-May-06 20:33
[DK]KiloDunse27-May-06 20:33 
QuestionCopies of CLR Pin
Imtiaz Murtaza27-May-06 2:20
Imtiaz Murtaza27-May-06 2:20 
AnswerRe: Copies of CLR Pin
Igor Sukhov28-May-06 19:05
Igor Sukhov28-May-06 19:05 
Questionhow to generate reports using microsoft reporting service? Pin
lin_xen_mung26-May-06 17:24
lin_xen_mung26-May-06 17:24 
AnswerRe: how to generate reports using microsoft reporting service? Pin
Kevin McFarlane31-May-06 3:03
Kevin McFarlane31-May-06 3:03 
QuestionTwo packets send to Web Service Pin
riwanlky26-May-06 4:52
riwanlky26-May-06 4:52 
QuestionDouble Buffering question Pin
ricecake26-May-06 4:50
ricecake26-May-06 4:50 
AnswerRe: Double Buffering question Pin
leppie31-May-06 2:39
leppie31-May-06 2:39 
GeneralRe: Double Buffering question Pin
ricecake31-May-06 3:14
ricecake31-May-06 3:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.