0
Put this into the codebehind of your form,
Protected Overrides ReadOnly Property CreateParams() As CreateParams
Get
Dim param As CreateParams = MyBase.CreateParams
param.ClassStyle = param.ClassStyle Or &H200
Return param
End Get
End Property
Source: here
That’s what I wanted, thank you very much!
– Mateus Justino