private void ctxtTaskManager_Click(object sender, EventArgs e) { if (lstClients.SelectedItems.Count != 0) { Client c = (Client)lstClients.SelectedItems[0].Tag; if (c.Value.frmTM != null) { c.Value.frmTM.Focus(); return; } frmTaskManager frmTM = new frmTaskManager(c); frmTM.Show(); } }