Search results for query: *

  1. S

    Problem in getting data from Serial Port

    Can anybody help me out of this problem. Its becoming bottleneck now. This is what I have done. Public Event DataReceived As Ports.SerialDataReceivedEventHandler Private Sub btnWriteToPort_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnWriteToPort.Click Dim...
  2. S

    Problem in getting data from Serial Port

    I have already done it biut not been able to read the data. The code is: If SerialPort1.IsOpen Then SerialPort1.Close() With SerialPort1 .PortName = cmbPorts.Text .BaudRate = 57600 .StopBits = IO.Ports.StopBits.One...
  3. S

    Problem in getting data from Serial Port

    Hi All, I am facing problem reading data from Serial port. Actually I am connecting with the hardware device called Crimp Force Analyzer. It gives the data on hyperterminal and I have to read that data from my vb.net program. The data is somewhat like this: 18:49...
Back
Top