Hi all

I looking For Something Like HyperlinkLabel Not To Used With URL But To Run
Procedure From My Form

Thanks

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
>



Re: HYPERLINK LABEL by Stefan

Stefan
Fri Mar 31 07:27:29 CST 2006


"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

You can make your own label class and modify .ForeColor, .FontUnderline,
.MousePointer, .Click() etc., similar to what the Fox team did in their

MODIFY CLASS _hyperlinklabel of (HOME()+"Ffc\_hyperlink.vcx")


hth
-Stefan



--
|\_/| ------ ProLib - programmers liberty -----------------
(.. ) Our MVPs and MCPs make the Fox run....
- / See us at www.prolib.de or www.AFPages.de
-----------------------------------------------------------



Re: HYPERLINK LABEL by Taha

Taha
Fri Mar 31 14:12:58 CST 2006

Thanks All
"Taha" <taha105@hotmail.com> wrote in message
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
>