I've done a lot of SQL programming as well as a some custom grids, and now I'm making a universal form containing a grid and search options for any query and set of fields thrown at it. I need to make use of the events of the TADOQuery in order to do this, but the events look a little funky. Is there a good tutorial for this? Or just some tips on which events and how to handle them to update a grid smoothly?

Specifically, I'm making a father form (to be inherited) which contains all necessary functionality to mimic a DB Grid. It will have for example a search panel on the left, a status bar showing number of records, time fetched, etc., and other misc. options. All I need to know is which events to catch, how to handle those events, etc. For example, Qry.AfterOpen I know means I need to refresh the entire grid, Qry.AfterScroll means I need to set the Row of the grid to the Query's RecordID, and so on. But I know there's things I can do for better performance, for example, if there are 1,000 records, if I put everything in the AfterOpen event, it could take time to refresh. I'm sure there's a way to only refresh those records as necessary to show in the grid, and load more records as the user scrolls down.

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.