I'd like to be able to show/hide second and third rows of data on a multiple items form. I thought it would be easy - just modify the height of one of the controls on that row and watch the entire row collapse or grow based on that modification. It's not working. What's weird is, using the below code, it will collapse the row, but not enlarge it.
Code:If ControlName.Height <> 0 Then ControlName.Height = 0 Else ControlName.Height = 0.22 End If