Author Topic: On/Off Com Port Using Control Button  (Read 1108 times)

joko markono

  • Full Member
  • ***
  • Posts: 142
    • View Profile
On/Off Com Port Using Control Button
« on: March 02, 2025, 10:03:18 PM »
Hi,
My Com setting as in attachment.
Can someone help me how can I turn on/off the port connection using control button?
Also need to clear the buffer at same time.
I'm using VB.Net.

bachphi

  • Hero Member
  • *****
  • Posts: 690
    • View Profile
Re: On/Off Com Port Using Control Button
« Reply #1 on: March 03, 2025, 10:16:05 AM »
Code: [Select]
Imports System.IO.Ports

Public Class Form1
    Dim WithEvents SerialPort1 As New SerialPort()

    Private Sub BtnOpenPort_Click(sender As Object, e As EventArgs) Handles BtnOpenPort.Click
        Try
            If Not SerialPort1.IsOpen Then
                SerialPort1.PortName = "COM4" ' Change to your COM port
                SerialPort1.BaudRate = 57600
                SerialPort1.Parity = Parity.Even
                SerialPort1.DataBits = 7
                SerialPort1.StopBits = StopBits.Two
                SerialPort1.Open()
' Clear buffers immediately after opening
SerialPort1.DiscardInBuffer()
SerialPort1.DiscardOutBuffer()
                MessageBox.Show("COM Port Opened")
            Else
                MessageBox.Show("COM Port is already open")
            End If
        Catch ex As Exception
            MessageBox.Show("Error: " & ex.Message)
        End Try
    End Sub

    Private Sub BtnClosePort_Click(sender As Object, e As EventArgs) Handles BtnClosePort.Click
        Try
            If SerialPort1.IsOpen Then
                ' Clear buffers before closing
                SerialPort1.DiscardInBuffer()
                SerialPort1.DiscardOutBuffer()

                SerialPort1.Close()
                MessageBox.Show("COM Port Closed")
            Else
                MessageBox.Show("COM Port is already closed")
            End If
        Catch ex As Exception
            MessageBox.Show("Error: " & ex.Message)
        End Try
    End Sub
End Class


« Last Edit: March 03, 2025, 10:17:57 AM by bachphi »
UCL =================
This is NOT alt.read.my.mind.
No such thing is sh^t-for-brains unless you are posting to alt.read.my.mind.
My understanding of computer is well below six Σ.
Unless what I am saying is logically defined in a PLC, everything else might be beyond my control.
LCL =================

joko markono

  • Full Member
  • ***
  • Posts: 142
    • View Profile
Re: On/Off Com Port Using Control Button
« Reply #2 on: March 04, 2025, 09:20:37 PM »
Thanks,
That code is actually fine but once I insert the driver in the AHMI, this code will not work because the driver for the OmronSerialHostlink already there. If I remove this driver, I don't think the HMI will work.
« Last Edit: March 04, 2025, 09:23:22 PM by joko markono »

bachphi

  • Hero Member
  • *****
  • Posts: 690
    • View Profile
Re: On/Off Com Port Using Control Button
« Reply #3 on: March 05, 2025, 11:08:07 AM »
Code: [Select]
Private Sub BtnOpenPort_Click(sender As Object, e As EventArgs) Handles BtnOpenPort.Click
    Try
        OmronSerialHostLinkCom1.InitializeComs()
        System.Threading.Thread.Sleep(1000)
        OmronSerialHostLinkCom1.DisableSubscriptions = 0
    Catch ex As Exception
        MessageBox.Show("Error: " & ex.Message)
    End Try

End Sub

 Private Sub BtnClosePort_Click(sender As Object, e As EventArgs) Handles BtnClosePort.Click
     Try
         OmronSerialHostLinkCom1.DisableSubscriptions = 1
         System.Threading.Thread.Sleep(1000)
         OmronSerialHostLinkCom1.closeComm()
     Catch ex As Exception
         MessageBox.Show("Error: " & ex.Message)
     End Try
 End Sub

UCL =================
This is NOT alt.read.my.mind.
No such thing is sh^t-for-brains unless you are posting to alt.read.my.mind.
My understanding of computer is well below six Σ.
Unless what I am saying is logically defined in a PLC, everything else might be beyond my control.
LCL =================

joko markono

  • Full Member
  • ***
  • Posts: 142
    • View Profile
Re: On/Off Com Port Using Control Button
« Reply #4 on: March 09, 2025, 01:25:22 AM »
Code: [Select]
Private Sub BtnOpenPort_Click(sender As Object, e As EventArgs) Handles BtnOpenPort.Click
    Try
        OmronSerialHostLinkCom1.InitializeComs()
        System.Threading.Thread.Sleep(1000)
        OmronSerialHostLinkCom1.DisableSubscriptions = 0
    Catch ex As Exception
        MessageBox.Show("Error: " & ex.Message)
    End Try

End Sub

 Private Sub BtnClosePort_Click(sender As Object, e As EventArgs) Handles BtnClosePort.Click
     Try
         OmronSerialHostLinkCom1.DisableSubscriptions = 1
         System.Threading.Thread.Sleep(1000)
         OmronSerialHostLinkCom1.closeComm()
     Catch ex As Exception
         MessageBox.Show("Error: " & ex.Message)
     End Try
 End Sub


Thanks bachphi.