SAVEASPDF not working

BluefingerBluefinger Member Posts: 20
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);

Comments

  • KYDutchieKYDutchie Member Posts: 345
    Hi,

    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
    Fostering a homeless, abused child is the hardest yet most rewarding thing I have ever done.
  • BluefingerBluefinger Member Posts: 20
    ok ... thanks a lot. I wasn't aware of that.
  • BluefingerBluefinger Member Posts: 20
    Bullzip works great ... thank you!!!!
Sign In or Register to comment.