hyperlink question
Can I put "raw" html code into the hyperlink properity?
pplblTicketID.HyperLink := (''+cdsDivPlanDtl.FieldByName('TICKET_ID').AsString+'');
I want to open a new browser when the link is clicked using target=_blank
but it will not work.
Any thoughts?
Thanks
pplblTicketID.HyperLink := (''+cdsDivPlanDtl.FieldByName('TICKET_ID').AsString+'');
I want to open a new browser when the link is clicked using target=_blank
but it will not work.
Any thoughts?
Thanks
This discussion has been closed.
Comments
The hyperlink feature is designed to simply open the web page defined. If
you would like to take complete control over the clicking of a report
component, try using the OnDrawCommandClick event
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
We use the API command ShellExecute to open the web page from Delphi. You
can see how we do this in the ppUtils.pas file (ppShellExec routine). You
may be able to do something similar however I'm not sure if you can use
ShellExecute to actually execute HTML code.
There may also be a Delphi component that can do this for you but your best
bet might simply be to create a local HTML file that contains the code below
and open it using ShellExecute.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
I am using the new hyperlink in the pdf output. I noticed that if you
prepend it with https:// then it will respect the path otherwise it leads
with the website information from the current pdf location. This works ok,
but I would like to have full control over what I can put in this link.
Is there any way that you can just allow me (like setting a switch to allow
raw html text to be placed in this field so I can do my own thing if needed)
to open a new browser window?
PDF actions are limited to simple hyperlink addresses created with the
HyperLink feature in ReportBuilder. I will add enhancing this capability to
support more advanced HTML commands to our list of possible improvements for
a later release of ReportBuilder.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com