View Single Post
  #14  
Old February 11th, 2010, 01:23 AM posted to microsoft.public.access.forms
AccessVandal via AccessMonster.com
external usenet poster
 
Posts: 461
Default Show code meaning rather than code value

As for the hiding of the combobox button, you can't hide it but you can make
it invisible.

1. Create a textbox and in the properties make it invisible or if you would
prefer make the combobox invisible. (both control is bound to the same
controlsource, you may need to modify your auto-fill)

2. Make both the textbox and combobox the same width and height and put them
in the same position in the Form. The trick here is to make them visible with
your form's current event and combobox event, so that the correct control
will always be visible.

If isnull(combobox) then
' do nothing
else
' make textbox visible and combobox invisible
end if

oldblindpew wrote:
Thanks for reading and replying. I fear I've offended the gods as some of my
recent questions have met with silence. snip...


--
Please Rate the posting if helps you.

Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...forms/201002/1