L
Larry Serflaten
Larry Serflaten said:Me.StartPosition = FormStartPosition.Manual
Me.Location = Point.op_Addition(Parent.Location, center)
Me.TopMost = True
Me.Show()
Or, as Marco suggested, you could get the functionality he mentioned
substituting the TopMost line with this:
' Me.TopMost = True
Parent.AddOwnedForm(Me)
LFS