Ver Mensaje Individual
  #5  
Antiguo 06-07-2007
Avatar de cHackAll
[cHackAll] cHackAll is offline
Baneado?
 
Registrado: oct 2006
Posts: 2.159
Reputación: 20
cHackAll Va por buen camino
Cool Yo opino...

Código Delphi [-]
var Printed: LongBool = False; // var global
 
procedure ImprimeInforme;
begin
 informe.print;
 Printed := True;
end;
 
...
begin
...
 if Printed then
  begin
//  ya imprimiste!!!
//  Printed := False; // para reiniciar la funcionalidad
...
  end;
...
end;
...
Responder Con Cita