DoCmd.GoToPage method (Access)
Carries out the GoToPage action in Visual Basic.
Syntax
expression.GoToPage (PageNumber, Right, Down)
expression A variable that represents a DoCmd object.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
PageNumber | Required | Variant | A numeric expression that's a valid page number for the active form. If you leave this argument blank, the focus stays on the current page. Use the Right and Down arguments to display the part of the page that you want to see. |
Right | Optional | Variant | A numeric expression that's a valid horizontal offset for the page. |
Down | Optional | Variant | A numeric expression that's a valid vertical offset for the page. |
Return value
Nothing
Remarks
The units for the Right and Down arguments are expressed in twips.
If you specify the Right and Down arguments and leave the PageNumber argument blank, you must include the PageNumber argument's comma. If you don't specify the Right and Down arguments, don't use a comma following the PageNumber argument.
The GoToPage method of the DoCmd object was added to provide backwards compatibility for running the GoToPage action in Visual Basic code in Microsoft Access 95. We recommend that you use the existing GoToPage method of the Form object instead.
Support and feedback
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.