Dunno if there's a better way to do this, and I can't believe it but I solved this one myself using a sp...
I created the sp like so,
Code:
CREATE PROCEDURE dbo.sp_Examples
AS
SELECT DISTINCT id, Name, Active, "ActiveText"=
CASE WHEN Active = 0 THEN
"No"
WHEN Active = 1 THEN
"Yes"
END
FROM tblExamples
RETURN
GO
then just referenced the field ActiveText in my datagrid bound column...
sweet...
-------------------------
Beware of programmers with screwdrivers...