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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can you make a Combo Box on a FORM invisable

Status
Not open for further replies.

Dylan

MIS
Aug 27, 1998
109
US
Hi All,

I have a FORM (tomsform) that has a combo box on it (Combo15) that I want to makek Invisible based on the value currently in another Combo box (discind) on the same form.

Is there a way to set this conditional attribute ??

Something like

If tomsform.Combo15 <> 'SUW' then
tomsform.discind.visible = false

and then re-query to refresh the form.

I looked in the FAQ but could not find a similar issue.

Thanks in advance for any help

Tom

Tom Moran
Lansing, Michigan
 
If Combo15 ="SUW" then
discind.visible = true
else
discind.visible = False
end if


Hope this helps
Hymn
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top