Disable autoredraw, visual basic .net

JarHead

Member
Joined
Sep 7, 2004
Messages
11
how do i disable autoredraw in a form? i want to have implicit control over when my form, and the controls it contains are drawn.

Thanks
 
I believe that Form.SetStyle (its a protected method) is what youre looking for (along
with the ControlStyles.UserPaint, of course). Check here.
 
Back
Top