Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tick Box

Status
Not open for further replies.

fabby1

Technical User
Mar 9, 2004
206
0
0
GB
Hi

I have a series of tick boxes, which when ticked display a drop down box for the user to select.

Is there a way, that when the user de-ticks the tick box the combo box dissappears.

I seem only at the moment to tick and then tick again to make it dissappear.

Thanks

Phil
 
Phil

I would do something like this

Me.Combo0.Visible = Not (Me.Check2.Value)

Regs

Peachmelba
 
Peach

That works great, but in reverse.

When I tick the blank box and piut a tick in it, nothing happens.

When I untick it the combobox appears

any ideas

Thanks

Phil
 
Phil

The NOT() statement reverse what the value is.

Simply remove that and it should work how you want.

Regs

Peachmelba
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top