Is there any real equivalent of C#'s DataGridView in Delphi?
I have tried
TStringGrid- But the scrollbar is either invisible when all the items are visible, or it is the smallest scrollbar possible no matter how little the items are overflowed and only updates when the scrollbar is released, not when it is being dragged
- Also, if you have one fixed row, you have to have at least one (empty) row besides that, which is inconvenient and unsightly
TDBGrid- But I can't seem to figure out how to add items programmatically (and I don't think it's meant to do that anyway). If I could do that,
TDBGridwould be fine for me to use.
- But I can't seem to figure out how to add items programmatically (and I don't think it's meant to do that anyway). If I could do that,
So what is the Delphi equivalent of C#'s DataGridView that doesn't have the problems listed above?
TDbGrid1.DataSource := ClientDataSet1;andTDbGrid1.DataSource := TTable1;but it can't compile because the types are wrong. Sorry, I'm a little new to delphi so I may be missing something obvious – Seth Carnegie Dec 21 '11 at 22:40