Joan Venge
Joan Venge

Reputation: 331022

Is there a way to make a Winforms Progress bar that's set to Marquee style to be faster?

I set the MarqueeAnimationSpeed to 1, which seems to be the lowest value allowed but it's still not moving fast enough.

Are there other parameters I can tweak to make it move faster? Maybe some unmanaged win32 calls?

Upvotes: 0

Views: 732

Answers (1)

Hans Passant
Hans Passant

Reputation: 941465

No, 1 millisecond is as low as PBM_SETMARQUEE allows. Values below 15 make no difference, timers can't tick any faster. Make it look like it moves faster by making the bar shorter.

Upvotes: 2

Related Questions