Returns or sets options for sorting or grouping database records. Boolean value.
expression.DBOptions
expression. A variable representing a Pair object.
This example groups the records.
With oProj.Pairs(1)
'row number of database heading
.DBRow = 3
'create primary key; column no. of master
.DBKeys = "2;3"
'group records
.DBOptions(syDatabaseGroup) = True
End With