RowColumnValue
Applies to
VAccess
Description
Returns a field value from a specified Row and Column in an extended fetch record set.
Syntax
object.RowColumnValue (row, column)
The syntax for this method has the following parts:
 
Remarks
Use this method as a shortcut to using the Row and Column properties to retrieve field data from an extended fetch record set.
The ExtendedOps property must be set to True to enable the extended operations capabilities of the VAccess control.
Example
'Print all rows in an extended fetch record set
For rowcount = 1 To Orders.Rows
For colcount = 1 To Orders.Columns
Debug.Print Orders.RowColumnValue(rowcount,
colcount)
Next colcount
Debug.Print "" 'new line
Next rowcount