Center a child form within a parent form
This function centers a child form within a parent form (not MDI), and can be used for custom messageboxes etc... Please try and leave a comment - Dan
AI
AI Summary: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.
Source Code
Public Function CenterChild(Parent As Form, Child As Form) On Local Error Resume Next If Parent.WindowState = 1 Then Exit Function Else Child.Left = (Parent.Left + (Parent.Width / 2)) - (Child.Width / 2) Child.Top = (Parent.Top + (Parent.Height / 2)) - (Child.Height / 2) End If End Function
Original Comments (3)
Recovered from Wayback Machine