Example #1
0
 private void organizacionesToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         this.Cursor = Cursors.WaitCursor;
         OrganizationForm frmOrganization = new OrganizationForm();
         frmOrganization.Show();
     }
     finally
     {
         this.Cursor = Cursors.Default;
     }
 }
Example #2
0
        private void addorganizationToolStripMenuItem_Click(object sender, EventArgs e)
        {
            OrganizationForm orgForm = new OrganizationForm();

            orgForm.Show();
        }