
Hello,
when I send some information via Job via COMx port everything is working, but when I try run this code from EventActionMail class there is a problem:
When I run EventJobCUD class wchich call EventActionEmail, I received error message from my code below place.
ERROR: System.IO.IOException: The port 'COM3' does not exist.
my code (working from job call):
SerialPort = new System.IO.Ports.SerialPort(this.connectPort());
this.setBaudRate();
this.setDataBits();
this.setParity();
this.setPortNum();
this.setStopBits();
SerialPort.Open();
if(SerialPort.get_IsOpen())
{
SerialPort.Write("HELLO");
}