Page.Navigate

Page.Navigate ( 

number NavigateType )

Description

Navigates to a relative page in your application.

Note: This action exits the script on the current event, so any action script occurring after it will not be executed.

Parameters

NavigateType

(number) The type of navigation to use:

CONSTANT

VALUE

DESCRIPTION

PAGE_FIRST

0

Navigate to the first page in the application.

PAGE_LAST

1

Navigate to the last page in the application.

PAGE_NEXT

2

Navigate to the next page in the application (according to the order the pages are listed in the program).

PAGE_PREVIOUS

3

Navigate to the previous page in the application (according to the order the pages are listed in the program).

PAGE_BACKWARD

4

Navigate one page backward in the user's navigation history (the page the user was on before the current page).

PAGE_FORWARD

5

Navigate one page forward in the user's navigation history. (For this type to work, the user must have used PAGE_BACKWARD before they can go forward in the navigation history.)

Returns

Nothing. You can use Application.GetLastError to determine whether this action failed, and why.

Availability

Standard

Pro

See also:  Related Actions