I have a form that needs to display a child form.
The child form needs to be in the centre of the parent form when it is displayed with:-
The 'CenterParent' option above doesn't have any impact
and displays the form in the top left of the screen.
Do I have to set up a parent/child relationship up between the forms somehow?
Dazed and confused
The child form needs to be in the centre of the parent form when it is displayed with:-
Code:
Dim StatusForm As New Form3
.
.
.
StatusForm.Show()
StatusForm.StartPosition =
FormStartPosition.CenterParent
The 'CenterParent' option above doesn't have any impact
and displays the form in the top left of the screen.
Do I have to set up a parent/child relationship up between the forms somehow?
Dazed and confused