
Signature
Thanks for taking the time!
CJ
---------------------------------------------------------
Know thyself, know thy limits....know thy newsgroups!
>I have the results showing up in a combo box and I was hoping to have that
>column read yes/no instead of -1/0. Is there no way to change it for the
>combo? I do have an alternative but this would be my preferred method.
One thing you could try is to set the Format property of the query field to
Yes/No. Or, you could use a calculated field in the query:
ShowYesNo: IIf([yesnofield], "Yes", "No")
and display that in the combo rather than the raw yes/no field.
John W. Vinson [MVP]
CJ - 08 Nov 2007 18:34 GMT
>>I have the results showing up in a combo box and I was hoping to have that
>>column read yes/no instead of -1/0. Is there no way to change it for the
[quoted text clipped - 9 lines]
>
> John W. Vinson [MVP]
Setting the Format Property does not work, thus my posting.
I will give the calculation a try otherwise I will use my alternative.
Thanks John!

Signature
Thanks for taking the time!
CJ
---------------------------------------------------------
Know thyself, know thy limits....know thy newsgroups!