Combo Box

  • Thread starter Thread starter Sam
  • Start date Start date
S

Sam

Hi

I have a combo box in my form, the bounded
field "Effects" is text
But the combo box is a list of value

I have the value
0 - Not finish
1 - DO it
2 - OK

I want the user to see the values: Not finish,Do it, OK
But when I stock in the fiels "Effects" I'll put the
values: 0 ;1;2

Is it possible or no??

Thanks
 
Yes.
in the property sheet under data tab
set the bound column to 1.

for the value list , row source
0;"Not Finished";1;"Do it";2;"OK"

under the format tab
set the column count to 2
column width to 0";1"
list width 1"
THT
 
Back
Top