Foros Club Delphi

Foros Club Delphi (https://www.clubdelphi.com/foros/index.php)
-   Varios (https://www.clubdelphi.com/foros/forumdisplay.php?f=11)
-   -   rave report (https://www.clubdelphi.com/foros/showthread.php?t=57344)

josi 12-06-2008 13:08:54

rave report
 
hola

despues que ejecuto mi aplicacion y ejecuto el boton antes de salirme el reporte me sale una ventanita output option en ingles, como elimino esto?


gracias

egostar 12-06-2008 16:18:12

Hola josi, lo que te muestra son las opciones de como quieres obtener el reporte, para evitar eso debes de enviar ya sea a imprimir, a pantalla, a guardar en archivo de esta forma

Mostrar en Pantalla
Código Delphi [-]
  
  RvSystem1.DefaultDest    := rdPreview;
  RvSystem1.DoNativeOutput := false;
  RvSystem1.RenderObject   := RvRenderPreview1;
  RvSystem1.SystemSetups   := RvSystem1.SystemSetups - [ssAllowSetup];

Mandar a Impresora
Código Delphi [-]
  
  RvSystem1.DefaultDest    := rdPrinter;
  RvSystem1.DoNativeOutput := false;
  RvSystem1.RenderObject   := RvRenderPrinter1;
  RvSystem1.SystemSetups   := RvSystem1.SystemSetups - [ssAllowSetup];

Guardar Archivo (Por ejemplo PDF)
Código Delphi [-]
  
  RvSystem1.DefaultDest    := rdFile;
  RvSystem1.DoNativeOutput := false;
  RvSystem1.RenderObject   := RvRenderPDF1;
  RvSystem1.SystemSetups   := RvSystem1.SystemSetups - [ssAllowSetup];
  RvSystem1.OutputFileName := Archivo;

Salud OS


La franja horaria es GMT +2. Ahora son las 13:40:15.

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Traducción al castellano por el equipo de moderadores del Club Delphi