Exemple #1
0
 private void buttonParallelSetup_Click(object sender, EventArgs e)
 {
     ParallelSetupDialog dialog = new ParallelSetupDialog(this.m_portAddress);
     if (dialog.ShowDialog() == DialogResult.OK) {
         this.m_portAddress = dialog.PortAddress;
     }
 }
Exemple #2
0
 public void Setup()
 {
     ParallelSetupDialog dialog = new ParallelSetupDialog(this.m_portAddress);
     if (dialog.ShowDialog() == DialogResult.OK)
     {
         this.m_portAddress = dialog.PortAddress;
         this.m_setupData.SetInteger(this.m_setupNode, "address", this.m_portAddress);
     }
 }
Exemple #3
0
        private void buttonPortSetup_Click(object sender, EventArgs e)
        {
            ParallelSetupDialog dialog = new ParallelSetupDialog(this.m_portAddress);

            if (dialog.ShowDialog() == DialogResult.OK)
            {
                this.m_portAddress = dialog.PortAddress;
            }
        }
Exemple #4
0
        public void Setup()
        {
            ParallelSetupDialog dialog = new ParallelSetupDialog(this.m_portAddress);

            if (dialog.ShowDialog() == DialogResult.OK)
            {
                this.m_portAddress = dialog.PortAddress;
                this.m_setupData.SetInteger(this.m_setupNode, "port", this.m_portAddress);
            }
        }