Inheritance: System.Windows.Forms.Form
Example #1
0
        private void mnuUnMapped_Click(object sender, EventArgs e)
        {
            if (lbSource.Items.Count > 0)
            {
                frmMappings notMapped = new frmMappings();

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

                theResults.refillMappings(TV);

                DialogResult theEnd = theResults.ShowDialog();
            }
        }