I am trying to update the row count total for a grid when a user selects an item from my combobox.
I am using the AfterRowFilterChanged event for the count when the grid is filtered and that works fine, but on my form I have a combobox that applies a query to the Grid. When the grid changes, my row count label stays the same.
What event is the last event that happens after a grid is displayed?
v8.1
What kind of query are you applying to the grid? If you're using a filter condition, then you should be able to use the grid's filtering events. If you're applying something on the underlying data source, this is more difficult to do since the grid will not update itself until the next Paint message; you don't really want to check row counts here, though. If you can be a little more specific, perhaps I can come up with a different workaround.
-Matt
I have a ComboBox on the form that selects a query. The grid then changes to the underlying datasource. Is there an event that is triggered when the grid information has changed without the filter?