Exemplo n.º 1
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();
     }
 }
Exemplo n.º 2
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();
         }
 }