Hi,
I am trying to use the SAVEASPDF function for the first time but nothing happens when I call the function. We are running version 6.0 with the SQL option BTW. If I replace it with the SAVEASHTML function, all things equal, it works perfectly.
Are there some additional components that I need to install to make it work? Anything I am overlooking?
thanks!!!!
here's the code I am using:
SetupIE.GET(SetupIE.Direction::Export,'REM',0);
PDFFileName := SetupIE."Path 1" + "No." + '.pdf';
CLEAR(ReminderReport);
PrintRec := Rec;
PrintRec.SETRECFILTER;
ReminderReport.SETTABLEVIEW(PrintRec);
IF EXISTS(PDFFileName) THEN
ERASE(PDFFileName);
ReminderReport.SAVEASPDF(PDFFileName);
0
Comments
the SAVEASPDF only works with the Roletailored client, not through the classic client or the NAS.
If you want to save reports as PDF's from the classic client or NAS, you will have to use a pdf report writer like bullzip.
Regards,
Willy