I'm using FlexiGrid in VB6 but, in run-time I change the number of rows several times in the same window. This result in a flick every time I change the 'rows' proerty.
How can I eliminate this flicking?
Printable View
I'm using FlexiGrid in VB6 but, in run-time I change the number of rows several times in the same window. This result in a flick every time I change the 'rows' proerty.
How can I eliminate this flicking?
i discovered this cool trick with the flexigrid <well - i thought it was a trick - and cool too>.
I was doing some processing with a flexigrid <putting pictures into it etc - but it's irrelevant> and it took a long time and ran slow and looked crap as you could see all this stuff happening on screen.
if all your code that is changing the rows of the grid is in one block then do this:
Code:'assuming your grid is called FlexGrid1
FlexGrid1.Visible = False
'Your Block
'of code goes
'here doing
'whatever you want
'to the grid
FlexGrid1.Visible = True
hope this helps and i understood your problem correctly...