How to Access a Particular Record from a Table

3 Jan 20201 minute to read

This can be done using the following code snippet.

//Uses the record Index to access a particular record from a table.
Record r=this.gridGroupingControl1.Table.Records[RecordIndex];
'Uses the record Index to access a particular record from a table.
Dim r As Record = Me.gridGroupingControl1.Table.Records(RecordIndex)