ShowSelectedFieldsDlg
Applies to
VAccess
Description
Invoking this method will display the Extended Query Field Selection dialog box, allowing the user to change the SelectedFields property at run time.
Syntax
object.ShowSelectedFieldsDlg
The syntax for this method has the following parts:
 
Remarks
You must invoke the Init method after any changes to the extended fetch record or field selection criteria before invoking an extended fetch method such as GetNextExtended.
The ExtendedOps property must be set to True to enable the extended operations capabilities of the VAccess control.
Example
'Allow the user to select the fields
'to be retrieved
Customers.ShowSelectedFieldsDlg "Field Selection"
 
're-establish current record positioning and
'initialize the extended operations buffers
'with the new field selections
Customers.GetFirst
Customers.Init
Customers.GetNextExtended