Skip to content

Latest commit

 

History

History
47 lines (28 loc) · 973 Bytes

Access.Form.Moveable.md

File metadata and controls

47 lines (28 loc) · 973 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Form.Moveable property (Access)
vbaac10.chm13524
vbaac10.chm13524
Access.Form.Moveable
ad0db2eb-9905-15d9-7a96-e61cefd12842
03/13/2019
medium

Form.Moveable property (Access)

Returns or sets a Boolean indicating whether the specified form can be moved by the user; True if it can be moved. Read/write.

Syntax

expression.Moveable

expression A variable that represents a Form object.

Remarks

Use the Move method to programmatically move a form or report regardless of the value of the Moveable property.

Example

The following example determines whether or not the first form in the current project can be moved.

If Forms(0).Moveable Then 
 MsgBox "You may move the form." 
Else 
 MsgBox "The form cannot be moved." 
End If 

[!includeSupport and feedback]