How do I refresh the MS Flexgrid once it's been populated?
Printable View
How do I refresh the MS Flexgrid once it's been populated?
I figured it out...
MSFlexGrid1.Clear
MSFlexGrid1.Visible = False
Clears the current rows and makes room for new query.
That didn't seem to work very well...it clears the grid, but leaves columns and rows...I need for the grid to be completely blank?!
Try setting the number of rows = 0 or 1 if you have a header row.
Got it. Works great. Thanks.