Código Delphi [-] try VerDatos := TFVerDatos.Create(Self); { más código } finally VerDatos.Free; end;
try VerDatos := TFVerDatos.Create(Self); { más código } finally VerDatos.Free; end;
Código Delphi [-] try VerDatos := TFVerDatos.Create(Self); try { más código } except { manejo de la exepción } end; finally VerDatos.Free; end;
try VerDatos := TFVerDatos.Create(Self); try { más código } except { manejo de la exepción } end; finally VerDatos.Free; end;