[Lazarus-es] zeos table: active vs open
José Mejuto
joshyfun en gmail.com
Vie Oct 15 17:41:05 CEST 2010
Hello Paola,
Friday, October 15, 2010, 4:09:38 PM, you wrote:
PB> ztable1.active:= true;
PB> ztable1.open;
PB> o en el orden inverso..
Que yo sepa hacen lo mismo como "actuación", sólo que a Open no le
puedes preguntar su estado ;) Esto es, uno es un método y otro una
propiedad. Básicamente:
ztable.setactive(value: boolean);
begin
if value and not FActive then begin
self.open;
end else if not value and FActive then begin
Self.close;
end;
end;
Algo así vamos...
--
Best regards,
José
More information about the Lazarus-es
mailing list