Exemplo n.º 1
0
 public spcnf(COMVIEWER.easyportcnf config)
 {
     InitializeComponent();
     this.DialogResult = DialogResult.None;
     Text = config.PortName;
     cb_baud.SelectedItem    = config.BaudRate.ToString();
     cb_bits.SelectedItem    = config.dataBits.ToString();
     cb_hs.SelectedIndex     = (int)config.handshake;
     cb_par.SelectedIndex    = (int)config.parity;
     cb_parada.SelectedIndex = (int)config.stopbits;
     writeTO.Value           = config.writetimeout;
     readTO.Value            = config.readtimeout;
 }
Exemplo n.º 2
0
 private void button2_Click(object sender, EventArgs e)
 {
     res = new COMVIEWER.easyportcnf(Text, int.Parse((string)cb_baud.SelectedItem), int.Parse((string)cb_bits.SelectedItem), (Parity)cb_par.SelectedIndex, (StopBits)cb_parada.SelectedIndex, (Handshake)cb_hs.SelectedIndex, (int)writeTO.Value, (int)readTO.Value);
     this.DialogResult = DialogResult.OK;
     this.Close();
 }