Jun 3, 2004 #1 jonwolds Programmer Aug 6, 2002 194 GB Hi, How can I stop users dragging the from around the screen in Access 2000? Thanks Jon
Jun 3, 2004 Thread starter #2 jonwolds Programmer Aug 6, 2002 194 GB Sorry I meant Form Upvote 0 Downvote
Jun 3, 2004 #3 TeddyvN Programmer Feb 25, 2003 28 NL Very simple: In the property-sheet of the form, on the format tab, the last option is 'Moveable'. Set this to 'no' and you're there. Teddy Upvote 0 Downvote
Very simple: In the property-sheet of the form, on the format tab, the last option is 'Moveable'. Set this to 'no' and you're there. Teddy
Jun 7, 2004 Thread starter #4 jonwolds Programmer Aug 6, 2002 194 GB The 'Moveable' option is not there is Access 2000 (as far as I can tell). Any other ideas? Jon Upvote 0 Downvote
Jun 7, 2004 #5 ZmrAbdulla Technical User Apr 22, 2003 4,364 AE Hi,Try this Code: Private Sub Form_Open(Cancel As Integer) Me.Moveable = False End Sub Not sure if it is working in Access2000 Zameer Abdulla http://www.geocities.com/zameerabd/http://www.mtkhoory.com Upvote 0 Downvote
Hi,Try this Code: Private Sub Form_Open(Cancel As Integer) Me.Moveable = False End Sub Not sure if it is working in Access2000 Zameer Abdulla http://www.geocities.com/zameerabd/http://www.mtkhoory.com
Jun 7, 2004 #6 dcurtis Technical User May 1, 2003 273 US The "moveable" property is there in Access 2000. It is located 2nd to last in the properties window of the form. Upvote 0 Downvote
The "moveable" property is there in Access 2000. It is located 2nd to last in the properties window of the form.