Re: HYPERLINK LABEL by Carsten
Carsten
Fri Mar 31 07:14:37 CST 2006
Taha,
in VFP 7 (or 8) all controls became 2 new events.
MousEnter and MouseLeave
Its quite easy to imitate a hyperlink-label
Drop a Label on the form, and put something like this in the
MouseEnter-event:
THIS.ForeColor= RGB(0,0,255)
THIS.FontUnderline= .T.
THIS.MousePointer= 15
and this in the MouseLeave-event:
THIS.ForeColor= RGB(0,0,0)
THIS.FontUnderline= .F.
THIS.MousePointer= 0
In the Click-event call your procedure. Thats it.
--
Cheers
Carsten
_______________________________
"Taha" <taha105@hotmail.com> schrieb im Newsbeitrag
news:OlhR$NIVGHA.5592@TK2MSFTNGP09.phx.gbl...
> Hi all
>
> I looking For Something Like HyperlinkLabel Not To Used With URL But To
> Run Procedure From My Form
>
> Thanks
>