How to access the current record in Windows Forms GridGroupingControl
15 Jun 20211 minute to read
To access the current record, use the following code.
Record rec = this.gridGroupingControl1.Table.CurrentRecord;
Trace.WriteLine(rec.ToString());
Dim rec As Record = Me.gridGroupingControl1.Table.CurrentRecord
Trace.WriteLine(rec.ToString())