private void button1_Click(object sender, EventArgs e) { if (!int.TryParse(textBox19.Text, out int baudRate)) { MessageBox.Show(DemoUtils.BaudRateInputWrong); return; } if (!int.TryParse(textBox18.Text, out int dataBits)) { MessageBox.Show(DemoUtils.DataBitsInputWrong); return; } if (!int.TryParse(textBox2.Text, out int stopBits)) { MessageBox.Show(DemoUtils.StopBitInputWrong); return; } if (!byte.TryParse(textBox1.Text, out byte Station)) { MessageBox.Show("PLC Station input wrong!"); return; } cpl?.Close( ); cpl = new DigitronCPL( ); try { cpl.SerialPortInni(sp => { sp.PortName = comboBox3.Text; sp.BaudRate = baudRate; sp.DataBits = dataBits; sp.StopBits = stopBits == 0 ? System.IO.Ports.StopBits.None : (stopBits == 1 ? System.IO.Ports.StopBits.One : System.IO.Ports.StopBits.Two); sp.Parity = comboBox2.SelectedIndex == 0 ? System.IO.Ports.Parity.None : (comboBox2.SelectedIndex == 1 ? System.IO.Ports.Parity.Odd : System.IO.Ports.Parity.Even); }); //yamateke.ByteTransform.DataFormat = (HslCommunication.Core.DataFormat)comboBox1.SelectedItem; cpl.Open( ); button2.Enabled = true; button1.Enabled = false; panel2.Enabled = true; userControlReadWriteOp1.SetReadWriteNet(cpl, "100", false); } catch (Exception ex) { MessageBox.Show(ex.Message); } }
public FormDigitronCPL( ) { InitializeComponent( ); cpl = new DigitronCPL( ); // omronHostLink.LogNet = new HslCommunication.LogNet.LogNetSingle( "omron.log.txt" ); }