2 columns combobox defaultvalue

Bioman

Registered User.
Local time
Today, 18:11
Joined
Feb 28, 2002
Messages
29
Hi!

In a form I have a combobox with 2 columns. The RowSourceType is a list of values. How can I set the defaultvalue of this combobox?

Thanks!
 
Use the DefaultValue property.
 
Yes, I try to use de defaultvalue property but it dosen't work.

My list of values is like this:
All;(no filter);1;Critic;2;Normal

The list is diplayed on 2 columns. When I put "All" in DefaultValue Property, it doesn't work, neither if I put "All;(no filter)"
 
Rowsoure: "All";"(no filter)";"1";"Critic";"2";"Normal"

Default Value: "All";"(no filter)"

???
ken
 
With Default Value: "All";"(no filter)" I get a syntax error message
 
Hi,

with rowsource: All;(no filter);1;Critic;2;Normal
and dependent column = 1 then defaultvalue should be: "All" (not: All)
 
Thank you for your help. If I put ="All", it work fine...
 

Users who are viewing this thread

Back
Top Bottom