Example #1
0
        private void TileSendPres_Click(object sender, EventArgs e)
        {
            this.Visible = false;
            FormSndPres fsp = new FormSndPres(this.GetId);

            fsp.Visible = true;
        }
Example #2
0
 private void BtnSndPres_Click(object sender, EventArgs e)
 {
     if (!string.IsNullOrWhiteSpace(this.txtPatId.Text))
     {
         this.Visible = false;
         this.PatId   = this.txtPatId.Text;
         FormSndPres fsp = new FormSndPres(this.GetId, this.PatId);
         fsp.Visible = true;
     }
     else
     {
         MessageBox.Show("Pleaes select Patient first from the list!");
     }
 }