hello i have a application which when start up search the comports available on the system.The problem is they are not correct always for example com2 is com28 or com2c and more. my code is
Code:
comports = SerialPort.GetPortNames()
Dim port As String
For Each port In comports
ComboBox1.Items.Add(port)
Next port