Hi, I have an option box that only displays some records if a certain radio button is clicked. What i would like to do is have the option box grow if that particular selection is chosen.
I guess its something along the line of
Private Sub optChoice_AfterUpdate()
Me!optChoice.Height -3.4 = (optChoice = 2)
Me!Home_Address.Visible = (optChoice = 2)
Me!lblHomeAddress.Visible = (optChoice = 2)
Me!lblHomePostcode.Visible = (optChoice = 2)
Me!Home_Postcode.Visible = (optChoice = 2)
End Sub
However this is not quite working, any ideas?
I guess its something along the line of
Private Sub optChoice_AfterUpdate()
Me!optChoice.Height -3.4 = (optChoice = 2)
Me!Home_Address.Visible = (optChoice = 2)
Me!lblHomeAddress.Visible = (optChoice = 2)
Me!lblHomePostcode.Visible = (optChoice = 2)
Me!Home_Postcode.Visible = (optChoice = 2)
End Sub
However this is not quite working, any ideas?