Hi all.
it is possible to set at runtime these properties?
DBText_1.DataPipeline.Name := 'xx';
DBText_1.DataField := 'yy';
if yes, in which event?
Or check if pipeline xx exists?
if (... ...) then
begin
DBText_1.DataPipeline.Name := 'xx';
DBText_1.DataField := 'yy';
end;
Thanks.