yes/no listbox

Vallan

Registered User.
Local time
Today, 15:08
Joined
Jan 16, 2008
Messages
46
Hello.

Is it possible to change a value in a listbox?


I have a column in a listbox refering to a yes/no.

In the listbox it shows as 0 -1.

Is it possible to make it showin yes or no instead?



Matt
 
Make the row source a value list with Yes and No in it - :)
 
Must be possible

Hi again.


If i have a listbox with 2 columns and one is a yes/no column.

in the listbox it shows like 0 and -1.


Somehow it must be possible to make the column to show the text instead (YES OR NO)


Maybe im wrong but i hope its possible.


Anyone who can give me a suggestion?

Matt
 
Matt,

Base your listbox on a query:

Code:
Select Field1, 
       IIf([Field2], "Yes", "No")
From YourTable
Order By Field1

Wayne
 

Users who are viewing this thread

Back
Top Bottom