Page 1 of 1
How I can turn on smooth filling to all progress-bar?
Posted: 2006-11-06, 07:56 UTC
by Garrett
How I can turn on smooth filling to all progress-bar (copy/move/delete...)?
From MSDN:
dwStyle
Specifies the progress bar control's style. Apply any combination of window stylesdescribed in CreateWindow in the Platform SDK, in addition to the following progress bar control styles, to the control:
...
PBS_SMOOTH Displays gradual, smooth filling in the progress bar control. Without this flag, the control will fill with blocks.
Posted: 2006-11-06, 11:07 UTC
by Sir_SiLvA
Insert NewStyleProgress=0
into wincmd.ini.
Posted: 2006-11-06, 12:31 UTC
by PeaceMaker
Sir_SiLvA wrote:Insert NewStyleProgress=0
into wincmd.ini.
..or if you already have that option in your wincmd.ini make sure, that the value is "0", not "1"

Posted: 2006-11-06, 13:31 UTC
by Garrett
2Sir_SiLvA
I think old style used slow delphi component (tgauge?).
But new style use standard win control, and add PBS_SMOOTH to its style is not hard work, imho.
Posted: 2006-11-06, 13:46 UTC
by Sir_SiLvA
Garrett wrote:2Sir_SiLvA
I think old style used slow delphi component (tgauge?).
But new style use standard win control, and add PBS_SMOOTH to its style is not hard work, imho.
No, both are Standard-Controls - the new one ist just theme-able...
(and who ever told you that delphi is slow is lying

)
Posted: 2006-11-06, 13:58 UTC
by Garrett
2
Sir_SiLvA
I not say that delphi slow, I say about tgauge, and excuse me if author not use it in old style progressbar

Posted: 2006-11-06, 16:31 UTC
by ghisler(Author)
No, I'm not using tgauge, I'm using my own self-developped control.
Posted: 2006-11-06, 16:38 UTC
by Hacker
Christian,
I'm not using tgauge, I'm using my own self-developped control.
Even for the new style progress bars?
Roman
Posted: 2006-11-06, 16:48 UTC
by ghisler(Author)
The new style is from Microsoft Common Controls, and is themed by Windows itself.
Posted: 2006-11-06, 17:55 UTC
by Garrett
2ghisler(Author)
Do you can add smooth filling to all progress-bar (copy/move/delete...)?
Posted: 2006-11-07, 16:54 UTC
by ghisler(Author)
I will consider it as an option.