Exemple #1
0
 private void systemInformationToolStripMenuItem_Click(object sender, EventArgs e)
 {
     foreach (Client c in GetSelectedClients())
     {
         FrmSystemInformation frmSi = FrmSystemInformation.CreateNewOrGetExisting(c);
         frmSi.Show();
         frmSi.Focus();
     }
 }
Exemple #2
0
 private void ctxtSystemInformation_Click(object sender, EventArgs e)
 {
     foreach (Client c in GetSelectedClients())
     {
         if (c.Value.FrmSi != null)
         {
             c.Value.FrmSi.Focus();
             return;
         }
         FrmSystemInformation frmSI = new FrmSystemInformation(c);
         frmSI.Show();
     }
 }
Exemple #3
0
 private void ctxtSystemInformation_Click(object sender, EventArgs e)
 {
     if (lstClients.SelectedItems.Count != 0)
     {
         Client c = (Client)lstClients.SelectedItems[0].Tag;
         if (c.Value.FrmSi != null)
         {
             c.Value.FrmSi.Focus();
             return;
         }
         FrmSystemInformation frmSI = new FrmSystemInformation(c);
         frmSI.Show();
     }
 }
Exemple #4
0
 private void ctxtSystemInformation_Click(object sender, EventArgs e)
 {
     foreach (Client c in GetSelectedClients())
     {
         if (c.Value.FrmSi != null)
         {
             c.Value.FrmSi.Focus();
             return;
         }
         FrmSystemInformation frmSI = new FrmSystemInformation(c);
         frmSI.Show();
     }
 }
Exemple #5
0
 private void ctxtSystemInformation_Click(object sender, EventArgs e)
 {
     if (lstClients.SelectedItems.Count != 0)
     {
         Client c = (Client) lstClients.SelectedItems[0].Tag;
         if (c.Value.FrmSi != null)
         {
             c.Value.FrmSi.Focus();
             return;
         }
         FrmSystemInformation frmSI = new FrmSystemInformation(c);
         frmSI.Show();
     }
 }