I have a textbox who's height I want to stretch when the window is resized. This code works fine:
Code:
Private Sub Form_Resize()
   Text1.Height = StatusBar1.Top - Text1.Top
End Sub
if the user resizes manually, but it stays the same size if the maximize button is pressed. Is there anyway to fix this?