Exemplo n.º 1
0
        public void Setup()
        {
            SetupDialog dialog = new SetupDialog(this.m_portAddress, this.m_useWithScript);

            if (dialog.ShowDialog() == DialogResult.OK)
            {
                this.m_portAddress = dialog.PortAddress;
                this.m_setupData.SetInteger(this.m_setupNode, "address", this.m_portAddress);
                this.m_useWithScript = dialog.UseWithScript;
                this.m_setupData.SetBoolean(this.m_setupNode, "useWithScript", this.m_useWithScript);
            }
        }
Exemplo n.º 2
0
 public void Setup()
 {
     SetupDialog dialog = new SetupDialog(this.m_portAddress, this.m_useWithScript);
     if (dialog.ShowDialog() == DialogResult.OK)
     {
         this.m_portAddress = dialog.PortAddress;
         this.m_setupData.SetInteger(this.m_setupNode, "address", this.m_portAddress);
         this.m_useWithScript = dialog.UseWithScript;
         this.m_setupData.SetBoolean(this.m_setupNode, "useWithScript", this.m_useWithScript);
     }
 }