BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
foreach(Record r in this.gridGroupingControl1.Table.Records)
{
string s = r.GetValue("DoExpand").ToString();
if(s == "1"))
this.gridGroupingControl1.Table.ShowRecord(r);
}
If this is not what you need can you post a sample project that shows what you need? I could then modify it to get it working.
Thanks,
Stefan
Private Sub button2_Click(sender As Object, e As System.EventArgs) Dim r As Record For Each r In Me.gridGroupingControl2.Table.Records If r.GetValue("Col3").ToString() = "1" Then Dim el As Element = r While Not (el.ParentGroup Is Nothing) el.ParentGroup.IsExpanded = True el = el.ParentGroup End While Console.WriteLine(r.ToString()) End If Next r Me.gridGroupingControl1.Table.InvalidateSummariesBottomUp() Me.gridGroupingControl1.TableControl.Refresh() End Sub ''button2_Click