antonyx
Arsenal Supporter
- Local time
- Today, 14:45
- Joined
- Jan 7, 2005
- Messages
- 556
hi im opening my form like so..
on that frm3AddPerson i use
problem is when i open the form in dialog mode.. it opens the form more to the left and top then normal opened forms..
anyone know a method that ensures form size.. and x y position that works always even in dialog mode..
Code:
DoCmd.OpenForm "frm3AddPerson", windowmode:=acDialog
on that frm3AddPerson i use
Code:
Private Sub Form_Open(Cancel As Integer)
DoCmd.MoveSize 0, 0, 14000, 8000
End Sub
problem is when i open the form in dialog mode.. it opens the form more to the left and top then normal opened forms..
anyone know a method that ensures form size.. and x y position that works always even in dialog mode..