Board index » delphi » Create a HotLink

Create a HotLink

I have an application that uses DBEdit boxes. On of the boxes is populated
with web addresses.  Is there a way/component that can make these addresses
hotlink?
 

Re:Create a HotLink


Make the font blue and underlined and
in the onclick of the dbedit use ShellExecute;

eg

ShellExecute(Handle, 'open', 'DEMO.htm', nil, nil, SW_SHOWNORMAL );

replacce demo.htm to suite

--
Thanks in Advance

Ant

Quote
"gary gladu" <gary.gl...@pdatasvcs.com> wrote in message

news:3b8e91c0_1@dnews...
Quote
> I have an application that uses DBEdit boxes. On of the boxes is populated
> with web addresses.  Is there a way/component that can make these
addresses
> hotlink?

Re:Create a HotLink


Hey Thanks. I didn't think it would be that simple.

Quote
"AD" <anth...@adcruze.freeserve.co.uk> wrote in message

news:3b8f47ab$2_2@dnews...
Quote
> Make the font blue and underlined and
> in the onclick of the dbedit use ShellExecute;

> eg

> ShellExecute(Handle, 'open', 'DEMO.htm', nil, nil, SW_SHOWNORMAL );

> replacce demo.htm to suite

> --
> Thanks in Advance

> Ant
> "gary gladu" <gary.gl...@pdatasvcs.com> wrote in message
> news:3b8e91c0_1@dnews...
> > I have an application that uses DBEdit boxes. On of the boxes is
populated
> > with web addresses.  Is there a way/component that can make these
> addresses
> > hotlink?

Other Threads