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,
TDBGrid
would 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?