You may want to insert a URL into a PDF document that has been generated from Ostendo. This URL could take you to a Paypal account from an invoice or even a freight tracking website for delivery tracking.
To achieve this, follow the steps below:
1) Open the document in the Report and View Developer
2) Insert a Text Box (Leave empty)
3) From the Events section for that field, create an 'On or Before' event.
4) In the Code section of the Report ensure the following code is entered. (Substitute Memo120 and the URL for your own field name and URL link)
procedure Memo120OnBeforePrint(Sender: TfrxComponent);
begin
Memo120.text := 'http://www.development-x.com';
end;
Alternatively in Update 234 and above the report writer now offers a new report property called "Hyperlink". You can populate this value with a url link so that it is available on a PDF of the form
Memo113.Hyperlink.Value := 'http://www.ostendo.info';
You can also set the Value property you have highlighted below with a report field so you could paste in [MD_."CUSTOMERWEB"] and that would be your link, then you can either set the value of the text control to the same [MD_."CUSTOMERWEB"] or something else if you like, so the displayed value can be different from the actual link