I want to resize the height of a form without resizing the width,
therefore I tried:
Private Sub Form1_Resize(By Val sender As Object, ByVal e As System.EventArg s) Handles MyBase.Resize
Me.Width = 226
End Sub
However this causes a lot of flickering on my form. How can I turn
off the flickering ?
Please help, RS
therefore I tried:
Private Sub Form1_Resize(By Val sender As Object, ByVal e As System.EventArg s) Handles MyBase.Resize
Me.Width = 226
End Sub
However this causes a lot of flickering on my form. How can I turn
off the flickering ?
Please help, RS
Comment