GoToPage Method (DoCmd Object)

Applies To

DoCmd object.

Description

The GoToPage method of the DoCmd object carries out the GoToPage action in Visual Basic. For more information on how the action and its arguments work, see the action topic.

Syntax

DoCmd.GoToPage [pagenumber][, right, down]

The GoToPage method has the following arguments.

Argument

Description

pagenumber

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. You can use the right and down arguments to display the part of the page you want to see.

right

A numeric expression that's a valid horizontal offset for the page.

down

A numeric expression that's a valid vertical offset for the page.


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. It's recommended that you use the existing GoToPage method of the Form object instead.

See Also

DoCmd object, GoToControl method, GoToPage action, GoToPage method (Form object), GoToRecord method, SelectObject method, SetFocus method.

Example

The following example uses the GoToPage method to move the focus to the position specified by the horizontal and vertical offsets on the second page of the active form:

DoCmd.GoToPage 2, 1440, 567