How can I set the protected DoubleBuffered property of the controls on a form that are suffering from flicker?
DoubleBuffered
vb.net version of this fine solution....:
Protected Overrides ReadOnly Property CreateParams() As CreateParams Get Dim cp As CreateParams = MyBase.CreateParams cp.ExStyle = cp.ExStyle Or &H2000000 Return cp End Get End Property