Fixed view refill not being in MDI.

This commit is contained in:
Adam McCane 2024-02-21 00:37:37 -05:00
parent 8f4c42556c
commit d7fc3aa037

View File

@ -940,8 +940,11 @@ namespace Louis__Pharmacy_CNSA212_FP
Int32 rxNum = Int32.Parse(rxNumString);
frmRefill refill = new frmRefill(rxNum);
refill.ShowDialog();
refill.MdiParent = MdiParent;
refill.StartPosition = FormStartPosition.CenterScreen;
refill.Show();
refill.Focus();
}
}
}