|
| Re: 2.61.4 patch kit - progress bar on Vista |
 |
Fri, 28 Mar 2008 05:12:52 -070 |
Andrew Shimmin wrote:
> The v2.61.4 patch kit's progress bar on Vista does not work when the
> aero UI is enabled. It starts and stays at 100%.
>
> I have seen this before and it is an incompatibility with the dBPLUS
> progress object that needs some settings in
>
ControlPanel>System>AdvancedSystemSettings>Advanced>PerformanceOptio
ns>VisualEffects
> changed to get a workaround.
Is this the dBASE ProgressBar object, or is it in the installer that the
issue occurs ...? If it's the installer, that's not actually a dBASE
product, but InstallShield (I think) ...
Ken
--
/(Opinions expressed are purely my own, not those of dataBased
Intelligence, Inc.)/
*Ken Mayer* [dBVIPS]
/Golden Stag Productions/
dBASE at goldenstag dot net
http://www.goldenstag.net/GSP
http://www.goldenstag.net/dbase/dBASEBooks.htm
|
| Post Reply
|
| 2.61.4 patch kit - progress bar on Vista |
 |
Fri, 28 Mar 2008 22:04:57 +110 |
The v2.61.4 patch kit's progress bar on Vista does not work when the aero UI is
enabled. It starts and stays at 100%.
I have seen this before and it is an incompatibility with the dBPLUS progress
object that needs some settings in
ControlPanel>System>AdvancedSystemSettings>Advanced>PerformanceOptio
ns>VisualEffects changed to get a workaround.
|
| Post Reply
|
| Re: 2.61.4 patch kit - progress bar on Vista |
 |
Sat, 29 Mar 2008 16:17:16 +110 |
Good point ... in this case the installer.
I have already seen the same problem with the dBase progress object in v2.61.3
and changed my visual effects setup and modified my progress bar update code to
workaround it.
regards, andrew
Ken Mayer [dBVIPS] wrote:
>
> Is this the dBASE ProgressBar object, or is it in the installer that the
> issue occurs ...? If it's the installer, that's not actually a dBASE
> product, but InstallShield (I think) ...
>
> Ken
|
| Post Reply
|
| Re: 2.61.4 patch kit - progress bar on Vista |
 |
Tue, 1 Apr 2008 13:48:11 -0400 |
Hi Andrew. I have been unable to recreate the issue using Vista Aero
with a simple progress bar (see below).
Are you seeing the same issue with this sample?
If not, Can you provide a turnkey for the issue you are seeing?
** END HEADER -- do not remove this line
//
// Generated on 04/01/2008
//
parameter bModal
local f
f = new progressvistaForm()
if (bModal)
f.mdi = false // ensure not MDI
f.readModal()
else
f.open()
endif
class progressvistaForm of FORM
with (this)
onOpen = class::FORM_ONOPEN
height = 16.0
left = 82.5
top = 0.0
width = 40.0
text = ""
endwith
this.PROGRESS1 = new PROGRESS(this)
with (this.PROGRESS1)
height = 1.0
left = 6.0
top = 6.7273
width = 24.4286
value = 0
rangeMin = 0
rangeMax = 10
endwith
function form_onOpen
for x = 1 to 10
sleep 1
form.progress1.value = x
endfor
return
endclass
Thanks, Kathy
> Good point ... in this case the installer.
>
> I have already seen the same problem with the dBase progress object in
v2.61.3 and changed my visual
>effects setup and modified my progress bar update code to workaround
it.
>
> regards, andrew
>
> Ken Mayer [dBVIPS] wrote:
> >
> > Is this the dBASE ProgressBar object, or is it in the installer that
the
> > issue occurs ...? If it's the installer, that's not actually a dBASE
> > product, but InstallShield (I think) ...
> >
> > Ken
> >
>
--
Thanks, Kathy
|
| Post Reply
|
| Re: 2.61.4 patch kit - progress bar on Vista |
 |
Wed, 2 Apr 2008 10:55:54 -0400 |
Thanks for the input Andrew. I'll keep an eye out for this.
- kathy
> Kathy,
>
> Thanks for testing it. I was not expecting you to do so.
>
> The symptom is a progress bar not visually showing 100% when its value =
rangeMax.
>
> I had 2 applications with the problem and I have fixed one but I CANNOT
find the other yet. It only happens on Vista.
>
> The Control Panel PerformanceOptions>VisualEffects> setting for
"Animate controls and elements inside windows" has a significant
impact on display behavior for progress bars. If I turn it off the problem goes
away. If I turn it on it comes back. Unfortunately I cannot isolate it down to a
turnkey.
>
> I suggest you pass on this one for now and if I can further isolate it I
will come back. Maybe someone else will run into it.
>
> Thanks for your time and effort.
<snip>
--
Thanks, Kathy
|
| Post Reply
|
|
|
|
|
|
|
|
|
|