Home Devices

Disable PDF/A-3 & PDF/A-3 ZUGFeRD devices

edited February 2018 in Devices
Is there any way to remove filters "PDF/A-3" and "PDF/A-3 ZUGFeRD" from
the print to file filters?

I noticed that if the user selects the export using one of these two
filters the application displays an AV:

Project Project1.exe raised exception class $C0000005 with message
'access violation at 0x00991e91: read of address 0x00000020'.

I would like only the PDF/A-1 and PDF/A-2 devices.

Why does this error occur when using the PDF A/3 or PDF ZUGFeRD filters?

Comments

  • edited February 2018
    Hi Samuel,

    There is a patch for RB 19.0 that solves this issue. Please send a
    message to support@digital-metaphors.com requesting the patch and we'll
    send it to you as soon as possible.

    File devices can be registered and unregistered using the device
    registration routines in the ppDevice.pas file.

    uses
    ppDevice, ppPDFA2Device, ppPDFA3Device, ppPDFA3ZFDevice;

    ...
    begin

    ppUnRegisterDevice(TppPDFA2Device);
    ppUnRegisterDevice(TppPDFA3Device);
    ppUnRegisterDevice(TppPDFA3ZFDevice);

    end;

    --
    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
This discussion has been closed.