| Centering child window inside MDI frame |
// Script for the Open event of the child window
w_child.X = (w_mdi.mdi_1.Width - w_child.Width) / 2
w_child.Y = (w_mdi.mdi_1.Height - w_child.Height) / 2
// mdi_1 default ClientArea inside MDI window
|