PreviousActiveX Controls Guide (9.1 revision 1) Next

RowColumnValue

Show this topic in Library frames

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) 
 

Part
Description
object
Required. The object placeholder represents an object expression that evaluates to an object in the Applies To list.
row
Required. Specifies a valid row in an extended fetch record set.
column
Required. Specifies a valid column in an extended fetch record set.

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 

Chapter contents
Publication contents

Prev topic: RemoveItem
Next topic: SetFileFlag