Firebird Checkbox
Sundara Manikandan
Chennai
Hai, I learned from the Forum that in order to connect a checkbox with data in Fast Reports, I have to use the data type BIT.
I am using Firebird Database. Unfortunately in Firebird there is no such data type.
Please advice me a workaround.
I am using Firebird Database. Unfortunately in Firebird there is no such data type.
Please advice me a workaround.
Comments
it doesn't matter which data type the table column has. Just leave the [DataColumn] property of the Checkbox control empty and define in property [Expression] when the Checkbox should be checked.
For example your column data type is Int16 : Checkbox property [Expression] looks like : [Table.ColumnName] == 1
With best regards - Ulrich
I'll try the same.