DoCmd.GoToPage (Access)

Carries out the GoToPage action in Visual Basic.

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.

GoToPage (PageNumber, Right, Down)


Dim lngPageNumber As Long: lngPageNumber = 
DoCmd.GoToPage PageNumber:=lngPageNumber

Arguments

The following argument is required

PageNumber (Long) - 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 that you want to see.

Optional arguments

The following arguments are optional

Right (Long) - A numeric expression that's a valid horizontal offset for the page.

Down (Integer) - A numeric expression that's a valid vertical offset for the page.