Hi people,
Could someone tell me what is wrong with the following coding? From where I'm sitting it looks fine to me, however when I move the parent form to a corner and then open the form it does not appear where it should.
Regards
Could someone tell me what is wrong with the following coding? From where I'm sitting it looks fine to me, however when I move the parent form to a corner and then open the form it does not appear where it should.
VB.NET:
frm2 = New Form6
frm2.Location = New Point(Me.Left + 274, Me.Top + 425)
frm2.ShowDialog()
frm2.Dispose()
Regards