Hello,
Live binding a TTMSFNCEdit works for me this way:
Link_TagName := TLinkControlToField.Create(Self);
Link_TagName.DataSource := BindSourceDB1;
Link_TagName.FieldName := 'weight';
Link_TagName.Control := MyEdit;
Link_TagName.Track := True;
Link_TagName.Active := True;
If I change the value, it changes the record.
However binding a TTMSFNCComboBox in a similar way doesn’t work:
Link_TagName := TLinkControlToField.Create(Self); // Owned by form, no BindingsList needed
Link_TagName.DataSource := BindSourceDB1;
Link_TagName.FieldName := 'language_code';
Link_TagName.Control := MyComboBox;
Link_TagName.Track := True;
Link_TagName.Active := True;
Here, If I change the value, it doesn’t do anything.
Thank you for your help.