Example #1
0
 private void toolStripButton4_Click(object sender, EventArgs e)
 {
     using (CareDialog form = new CareDialog(null))
     {
         DialogResult dr = form.ShowDialog();
         if (dr == DialogResult.OK)
         {
         }
     }
 }
Example #2
0
 private void toolStripMenuItem7_Click(object sender, EventArgs e)
 {
     using (CareDialog form = new CareDialog(null))
     {
         DialogResult dr = form.ShowDialog();
         if (dr == DialogResult.OK)
         {
             toolStripMenuItem8_Click(null, null);
         }
     }
 }