The event arguments passed when the SelectHostCtrlEventArgs raises events.
Inheritance: System.EventArgs
Exemple #1
0
 private void DomainNameCTRL_HostConnected(object sender, SelectHostCtrlEventArgs e)
 {
     try {
         m_domain = e.Hostname;
         HostsCTRL.Initialize(m_domain);
         m_hostname    = null;
         OkBTN.Enabled = false;
     } catch (Exception exception) {
         GuiUtils.HandleException(this.Text, MethodBase.GetCurrentMethod(), exception);
     }
 }
Exemple #2
0
 private void HostNameCTRL_HostConnected(object sender, SelectHostCtrlEventArgs e)
 {
     try {
         m_hostname = e.Hostname;
         ServersCTRL.Initialize(m_hostname, m_configuration);
         m_server      = null;
         OkBTN.Enabled = false;
     } catch (Exception exception) {
         GuiUtils.HandleException(this.Text, MethodBase.GetCurrentMethod(), exception);
     }
 }
 private void HostNameCTRL_HostConnected(object sender, SelectHostCtrlEventArgs e)
 {
     try
     {
         m_hostname = e.Hostname;
         ServersCTRL.Initialize(m_hostname, m_configuration);
         m_server        = null;
         OkBTN.IsEnabled = false;
     }
     catch (Exception exception)
     {
         GuiUtils.HandleException(String.Empty, GuiUtils.CallerName(), exception);
     }
 }
 private void DomainNameCTRL_HostConnected(object sender, SelectHostCtrlEventArgs e)
 {
     try
     {
         m_domain = e.Hostname;
         HostsCTRL.Initialize(m_domain);
         m_hostname      = null;
         OkBTN.IsEnabled = false;
     }
     catch (Exception exception)
     {
         GuiUtils.HandleException(String.Empty, GuiUtils.CallerName(), exception);
     }
 }
Exemple #5
0
 private void HostNameCTRL_HostSelected(object sender, SelectHostCtrlEventArgs e)
 {
     try {
         if (m_hostname != e.Hostname)
         {
             m_hostname = e.Hostname;
             ServersCTRL.Initialize(m_hostname, this.StartingRecordUP, this.MaxRecordsUP,
                                    this.CapabilityFilterTB, m_configuration);
             m_server      = null;
             OkBTN.Enabled = false;
         }
     } catch (Exception exception) {
         GuiUtils.HandleException(this.Text, MethodBase.GetCurrentMethod(), exception);
     }
 }
 private void DomainNameCTRL_HostSelected(object sender, SelectHostCtrlEventArgs e)
 {
     try
     {
         if (m_domain != e.Hostname)
         {
             m_domain = e.Hostname;
             HostsCTRL.Initialize(m_domain);
             m_hostname = null;
             OkBTN.IsEnabled = false;
         }
     }
     catch (Exception exception)
     {
         GuiUtils.HandleException(String.Empty, GuiUtils.CallerName(), exception);
     }
 }
 private void HostNameCTRL_HostSelected(object sender, SelectHostCtrlEventArgs e)
 {
     try
     {
         if (m_hostname != e.Hostname)
         {
             m_hostname = e.Hostname;
             ServersCTRL.Initialize(m_hostname, m_configuration);
             m_server = null;
             OkBTN.IsEnabled = false;
         }
     }
     catch (Exception exception)
     {
         GuiUtils.HandleException(String.Empty, GuiUtils.CallerName(), exception);
     }
 }
 private void HostNameCTRL_HostConnected(object sender, SelectHostCtrlEventArgs e)
 {
     try
     {
         m_hostname = e.Hostname;
         ServersCTRL.Initialize(m_hostname, this.StartingRecordUP, this.MaxRecordsUP, this.CapabilityFilterTB, m_configuration);
         m_server = null;
         OkBTN.Enabled = false;
     }
     catch (Exception exception)
     {
         GuiUtils.HandleException(this.Text, MethodBase.GetCurrentMethod(), exception);
     }
 }
Exemple #9
0
 private void DomainNameCTRL_HostConnected(object sender, SelectHostCtrlEventArgs e)
 {
     try
     {
         m_domain = e.Hostname;
         HostsCTRL.Initialize(m_domain);
         m_hostname = null;
         OkBTN.Enabled = false;
     }
     catch (Exception exception)
     {
         GuiUtils.HandleException(this.Text, MethodBase.GetCurrentMethod(), exception);
     }
 }
 private void HostNameCTRL_HostSelected(object sender, SelectHostCtrlEventArgs e)
 {
     try
     {
         if (m_hostname != e.Hostname)
         {
             m_hostname = e.Hostname;
             ServersCTRL.Initialize(m_hostname, m_configuration);
             m_server = null;
             OkBTN.Enabled = false;
         }
     }
     catch (Exception exception)
     {
         GuiUtils.HandleException(this.Text, MethodBase.GetCurrentMethod(), exception);
     }
 }