TMemoPDF is a freeware VCL component that uses our TRolePDF to create .pdf documents automatically from Borland Delphi/C++Builder TMemo.
Example:
with TMemoPDF.Create(nil) do
try
AutoLaunch := true;
CreateOutlines := true;
Lines.LoadFromFile('test.txt');
SaveToFile('test.pdf');
finally
Free;
end;