Re: Remove file types
Hi,
I am using other third party libraries to export my rb report to PDF, RTF,
etc. I do not make use of the Text File & Report Emulation Text File
supplied by RB. Is it possible for me to remove these two selections from
the Type field in the Print To File groupbox of the print dialog? I can't
set the AllowPrintToFile property false since I need the Print To File
groupbox to show up with the third party library file types. I am using
RB7.04 and D7.
Thanks,
Peter Tan
I am using other third party libraries to export my rb report to PDF, RTF,
etc. I do not make use of the Text File & Report Emulation Text File
supplied by RB. Is it possible for me to remove these two selections from
the Type field in the Print To File groupbox of the print dialog? I can't
set the AllowPrintToFile property false since I need the Print To File
groupbox to show up with the third party library file types. I am using
RB7.04 and D7.
Thanks,
Peter Tan
This discussion has been closed.
Comments
You can easily unregister any built-in devices using the ppUnregisterDevice
routine.
uses
ppFilDev, ppDevice;
ppUnRegisterDevice(TppTextFileDevice);
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Peter Tan