MSI.ViewFetch

number MSI.ViewFetch ( 

number hView )

Description

Calls the MsiViewFetch function that fetches the next sequential record from the view. This function returns a handle that should be closed using MSI.CloseHandle. MSI.ViewExecute must be called before any calls to this action.

Parameters

hView

(number) Handle to the view to fetch from.

Returns

(number)  The handle for the fetched record. If there are no records remaining, 0 is returned. You can use Application.GetLastError to determine whether this action failed, and why.

See also:  Related Actions