![]() |
Sergey Kornilov admin 10/6/2004 |
Hi, function GetData(Field, Format) ' long binary data? if IsBinaryField(Field) then GetData = "LONG BINARY DATA - CANNOT BE DISPLAYED" elseif Field.Type = 11 then if IsNull(Field.Value) then GetData="No" else if Field.Value = "True" or CInt(Field.Value)<>0 then GetData = "Yes" else GetData = "No" end if end if |