Hi All,

I am using a msflexgrid to display my access database (not editing it in run time).

But, I have one column which is a boolean.
When I display it, that boolean column doesn't show as "True/ False" or "Yes/ No".
It is shown as " -1 / 0 " ... that's not so informative at all.

How can I show it as True/ False?

thanks,

neosonic

Recommended Answers

All 3 Replies

Make use of an if then statement, something like -

With MSFlexGrid1
            If .TextMatrix(iRow, iCol) = "-1" Then
                .TextMatrix(iRow, iCol) = "False"
            Else
                .TextMatrix(iRow, iCol) = "True"
            End If
        End With

:) thanks buddy, you are the best!!!
it works perfectly

It wasa pleasure. Happy coding.:)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.