Report.Moveable property (Access)
Returns or sets a Boolean indicating whether the specified report can be moved by the user; True if it can be moved. Read/write.
expression.Moveable
expression A variable that represents a Report object.
Use the Move method to programmatically move a form or report regardless of the value of the Moveable property.
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
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.