Resize MSFlexGrid columns with Slider
I have an MSFlexGrid that I need to resize the columns on. I have a Slider, and it works.
Problem is this: The width does not change until I let go of the Slider. I'd like to see the width change smoothly as I was adjusting the Slider.
Anyone know how to do this?
Re: Resize MSFlexGrid columns with Slider
use the sliders "Scroll" event to resize your FlexGrid and remember to do a FlexGrid.Refresh after every change. .Refresh will force VB to update the control. Without the Refresh, nothing will appear to happen until the slider is let go.
John G
Re: Resize MSFlexGrid columns with Slider
Thank you!
I had not considered any event besides "Change"
This worked very well, thank you!
Morgan