Combo box

rishi_375

Registered User.
Local time
Today, 13:36
Joined
Dec 23, 2003
Messages
37
Hi,
I use combo box in my form. I want facility like drop down box had in Visual basic.
I use unbound combo box. I want to show always first value to be selected. and user cannot write in combo box.
Thanks.
 
On the Load event of the form put Me.ComboboxName = 1 (Or what ever).

As to not being able to type in the combo box, my sugestion would be to use a list box.

Dave
 
In the form's OnLoad event:

Code:
Me.Combo = Me.Combo.ItemData(0)
 
Where do you come up with little gems Mile ?

The code samples you supply seems to have no reference in the help files but makes common sense when you see it.

Makes me nervious to post replies as I know "Mile will correct me"

:)

Dave
 
Oldsoftboss said:
Where do you come up with little gems Mile?

Usually I've been in the same predicament; the rest is just lateral/logical thought. :cool:
 
the rest is just lateral/logical thought.


Now I know where I fall down.
 

Users who are viewing this thread

Back
Top Bottom