Hi
I try to create new Form with DoubleBuffered by code, but the DoubleBuffered is Protected property.
How i can change value of that property
Thanks.......
I try to create new Form with DoubleBuffered by code, but the DoubleBuffered is Protected property.
How i can change value of that property
Thanks.......
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim frm As New Form
frm.Text = "Draw"
frm.DoubleBuffered = True
frm.Show()
End Sub