Results 1 to 2 of 2

Thread: FlexiGrid problem

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    May 1999
    Location
    Reynosa, Mexico
    Posts
    274
    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?
    Ulises Vázquez
    [size=1.7]Oracle DBA Certified Professioanl
    Visual Basic 6 Developer
    Crystal Reports Designer
    [/size]

  2. #2
    Addicted Member
    Join Date
    Jan 2000
    Location
    Sydney, Australia
    Posts
    196
    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...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width