When I installed ctl32_20080903 the progressbar in the status bar stopped working. Looking at some of the other posts it looked like _Vfp.AutoYield had to be .T. when setting values for progressbar. It doesn't have any effect. The Progressbar panel is visible and appears to be a blue line on left edge but nothing displays.
with _screen.statusbar.progressbar
.ctlvisible = .t.
.ctlmaximum = 100
.ctlminimum = 0
.ctlmarquee = .f.
for lnIndex = 10 to 100 step 10
.ctlvalue = lnIndex
endfor
endwith
I tried to set _Vfp.AutoYield = .t. or .f. with no effect. I had a thermometer class that i modified to feed the statusbar instead of displaying in middle of screen. I had to restore its old behavior and just display.
Any suggestions?
Ken
