Subject I can't toggle the status of a IB_CheckBox ...
Author pc66_kyk
Hello,

I declared the following :

CREATE DOMAIN D_BOOL AS
CHAR(1)
DEFAULT 'F'
CHECK (VALUE IN ('F','T'))
COLLATE NONE; It work.

I have a typicall

IB.Connection ...
IB.Transact ...
IB_QUERY1 ...
IB_DataSource
+ several IB_Edit controls
(works perfect with all the other IB_Controls )

All this work, and I can change and save values
of any IB_Edit Control.

A TIB_CheckBox is able to display is checked or not
depending on the value of the field.


The problem is that I can't change the status,
I can't toggle between checked or not Checked
for an TIB_CheckBox. No way ...


Any idea is welcome.
PC