<< Click to Display Table of Contents >> Pair.DBOptions Property |
Returns or sets options for sorting or grouping database records. DBOptionFlag value.
expression.DBOptions
expression. A variable representing a Pair object.
This example groups the records.
With oProj.Pairs.Item(0)
'row number of database heading
.DBRow = 3
'create primary key; column no. of source file
.DBKeys = "2;3"
'group records
.DBoptions = DBOptionFlag_Group
End With