I have code here that works on forms and disable flickers but when I apply this code to a child form and open it inside the MdiContainer it corrupts it.
'Remove Flicker Lag
Protected Overrides ReadOnly Property CreateParams() As CreateParams
Get
Dim cp As CreateParams = MyBase.CreateParams
cp.ExStyle = cp.ExStyle Or &H2000000
' Turn on WS_EX_COMPOSITED
Return cp
End Get
End Property
Can anyone please help me?
Or maybe someone can suggest how to remove the flicker on a child form when open inside an MdiContainer?