Yes/No column weird behavior via Terminal Server

D

Dorian

I have a listbox that shows the contents of a Yes/No column. When I work in
the office, it displays Yes or No for the contents. However, when I access
the database remotely via Terminal Server, the columns display as 0 or -1.
Does anyone know if there is a way around this?
Thanks.
-- Dorian
"Give someone a fish and they eat for a day; teach someone to fish and they
eat for a lifetime".
 
K

karl dewey

Boolean data, Yes/No, is stored as -1 and 0. Either set your display format
for Yes/No or use an IIF statement.
IIF([YourField] = -1, "Yes", "No")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top