C
Charlie Brown
I am using the following to load my mdi form into the parent.
If Me.frmIncoming Is Nothing Then
Me.frmIncoming = New IncomingForm
Me.frmIncoming.MdiParent = Me
End If
Me.frmIncoming.Show()
Me.frmIncoming.Location = New Point(10, 450)
When the forms Show() method is called and before the location is
changed the form briefly appears at the default child MDI location
before moving. This looks terrible on screen as a user. Is there a
way of overriding the show method so it won't preposition the form? I
have tried placing the location before the Show() method but that
doesn't work.
If Me.frmIncoming Is Nothing Then
Me.frmIncoming = New IncomingForm
Me.frmIncoming.MdiParent = Me
End If
Me.frmIncoming.Show()
Me.frmIncoming.Location = New Point(10, 450)
When the forms Show() method is called and before the location is
changed the form briefly appears at the default child MDI location
before moving. This looks terrible on screen as a user. Is there a
way of overriding the show method so it won't preposition the form? I
have tried placing the location before the Show() method but that
doesn't work.