Hyperlink and bookmarks
I appreciate your patience answering all these questions AlexTZ, and I was hoping you could answer one more.
I'm preparing multiple reports and appending them to the end of the previous report, creating one long report.
My question: Is there a way to have hyperlinks in earlier report pages target pages (or bookmarks) created later? Basically, can I programmatically change the target of a hyperlink after its been prepared?
I'm preparing multiple reports and appending them to the end of the previous report, creating one long report.
My question: Is there a way to have hyperlinks in earlier report pages target pages (or bookmarks) created later? Basically, can I programmatically change the target of a hyperlink after its been prepared?
Comments
I did a simple test:
- I've opened "Interactive Reports|Hyperlinks, Bookmarks.frx" report and splitted it to two reports, "1.frx" (contains the first page) and "2.frx" (contains the second page)
- in the application code, I've prepared the splitted reports in the following way:
FReport.Load("1.frx");
RegisterData();
FReport.Prepare();
FReport.Load("2.frx");
RegisterData();
FReport.Prepare(true);
FReport.ShowPrepared();
Now, if I click a hyperlink defined in the first report, it will navigate to the second report.
Good product, and good support. I'll be recommending this software to my company.
Thank you.