Skip to content

Latest commit

 

History

History
50 lines (29 loc) · 1.74 KB

Access.DoCmd.GoToPage.md

File metadata and controls

50 lines (29 loc) · 1.74 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
DoCmd.GoToPage method (Access)
vbaac10.chm4153
vbaac10.chm4153
Access.DoCmd.GoToPage
37fe25b3-85b2-f681-acfd-96dab039e58f
03/07/2019
medium

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.

[!includeSupport and feedback]