problemas al exportar los memo a word
tengo problemas al exportar un memo a word. no me aparecen todos los campos. este es el codigo.
procedure TMainForm.Rep2WrdBtnClick(Sender: TObject);
var
OldQrPrint: TQuickRep;
begin
// Respaldo el anterior TQuickRepd
OldQrPrint := aReport;
// Ejecuta reporte a Word
ExecuteToWord := True;
Application.CreateForm (TRepForm, RepForm);
aReport := RepForm.Components [0] as TQuickRep;
aReport.Preview;
RepForm.Free;
// Restaura el TQuickRep
aReport := OldQrPrint;
end;
procedure TMainForm.Rep2WrdBtnClick(Sender: TObject);
var
OldQrPrint: TQuickRep;
begin
// Respaldo el anterior TQuickRepd
OldQrPrint := aReport;
// Ejecuta reporte a Word
ExecuteToWord := True;
Application.CreateForm (TRepForm, RepForm);
aReport := RepForm.Components [0] as TQuickRep;
aReport.Preview;
RepForm.Free;
// Restaura el TQuickRep
aReport := OldQrPrint;
end;
