The TppTextFileDevice.Encoding property can be used control the encoding. This is a public property. Use the Report.OnFileDeviceCreate event - here is an example.
uses ppFilDev;
procedure TForm1.ppReport1FileDeviceCreate(Sender: TObject); begin if (ppReport1.FileDevice is TppTextFileDevice) then TppTextFileDevice(ppReport1.FileDevice.Encoding := TEncoding.ASCII;
end;
- Nard Moseley Digital Metaphors www.digital-metaphors.com
Best regards,
Nard Moseley Digital Metaphors www.digital-metaphors.com
Comments
The TppTextFileDevice.Encoding property can be used control the encoding.
This is a public property. Use the Report.OnFileDeviceCreate event - here
is an example.
uses
ppFilDev;
procedure TForm1.ppReport1FileDeviceCreate(Sender: TObject);
begin
if (ppReport1.FileDevice is TppTextFileDevice) then
TppTextFileDevice(ppReport1.FileDevice.Encoding := TEncoding.ASCII;
end;
-
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Best regards,
Nard Moseley
Digital Metaphors
www.digital-metaphors.com