Restricing the export types in the "Print to file" option.
Delphi7 and RB 10.07 build 2
Hello,
When I select "Print to file", some of the available types are of no use to
my customer (eg, Archive File and Text File). I guess this combobox is
loaded at runtime. How would I go about restricting what appears in this
combobox ? I'm quite happy to modify the source if this can't be done via an
event trigger.
Thanks,
Ian
Hello,
When I select "Print to file", some of the available types are of no use to
my customer (eg, Archive File and Text File). I guess this combobox is
loaded at runtime. How would I go about restricting what appears in this
combobox ? I'm quite happy to modify the source if this can't be done via an
event trigger.
Thanks,
Ian
This discussion has been closed.
Comments
I was looking at some other posts and found the answer. I do the
following and all is fine:
uses
ppFilDev, ppDevice;
ppUnRegisterDevice(TppTextFileDevice);
Thanks,
Ian