vipersmind
it can't be!
- Local time
- Tomorrow, 07:42
- Joined
- Dec 26, 2002
- Messages
- 82
Hi
Yes I know how to positon a form use docmd.movesize but I have a problem with a floating form that the user can open.
On my PC it opens exactly where I want it to but on someone elses it moves slightly over and covers another form.
What I would like to happen is that the popup form stays in the same position on the unlaying form no matter where it opens....making sense??
Cress
Yes I know how to positon a form use docmd.movesize but I have a problem with a floating form that the user can open.
On my PC it opens exactly where I want it to but on someone elses it moves slightly over and covers another form.
What I would like to happen is that the popup form stays in the same position on the unlaying form no matter where it opens....making sense??
Code:
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmSrchFaceID_Sub"
DoCmd.OpenForm stDocName, , , stLinkCriteria
DoCmd.MoveSize 7000, 9100
Cress