Jun 3, 2004 #1 jonwolds Programmer Joined Aug 6, 2002 Messages 194 Location 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 Joined Aug 6, 2002 Messages 194 Location GB Sorry I meant Form Upvote 0 Downvote
Jun 3, 2004 #3 TeddyvN Programmer Joined Feb 25, 2003 Messages 28 Location 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 Joined Aug 6, 2002 Messages 194 Location 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 Joined Apr 22, 2003 Messages 4,364 Location 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 Joined May 1, 2003 Messages 273 Location 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.