private void mnuUnMapped_Click(object sender, EventArgs e) { if (lbSource.Items.Count > 0) { frmMappings notMapped = new frmMappings(); DialogResult theEnd = notMapped.ShowDialog(this); } }
private void mnuShowMappings_Click(object sender, EventArgs e) { if (TV.Nodes.Count > 0) { frmMappings theResults = new frmMappings(); theResults.refillMappings(TV); DialogResult theEnd = theResults.ShowDialog(); } }