I have a TreeView Control which I update often from code. When the XP-OS is
set to Fade or Scroll Effect this TreeView flickers a lot and looks awful..
when set to no Effect it behaves much better.. but is there any way for me
to control this setting for a certain Control or Form from the code?

/Andreas Zita

Re: Disable Fade/Scroll Effect on XP by Bram

Bram
Tue Mar 15 06:32:26 CST 2005

Do you call BeginUpdate() and EndUpdate() before and after large
operations? This can prevent redrawing the control after every
insertion and can dramatically increase performance.


Re: Disable Fade/Scroll Effect on XP by Andreas

Andreas
Tue Mar 15 07:00:13 CST 2005

Yes, Im doing that. But when calling EndUpdate the changes done will "scroll
appear" and "flash"... annoying

Thanks anyway Bram ...

"Bram" <bram@fokke.net> skrev i meddelandet
news:1110889946.425115.53870@g14g2000cwa.googlegroups.com...
> Do you call BeginUpdate() and EndUpdate() before and after large
> operations? This can prevent redrawing the control after every
> insertion and can dramatically increase performance.
>