Option box grow

Cereldine

Registered User.
Local time
Today, 18:54
Joined
Aug 4, 2005
Messages
71
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?
 
You appear to be trying to assign a boolean value to a numeric value :

Me!optChoice.Height -3.4 = (optChoice = 2) ????
 

Users who are viewing this thread

Back
Top Bottom