UrlLink @ xx,yy

Post Reply
User avatar
Sistem
Posts: 224
Joined: Sun May 13, 2012 7:52 am

UrlLink @ xx,yy

Post by Sistem »

es posible utilizar UrlLink tipo comando SAY?

FROM
REDEFINE URLLINK ID 106 URL "mailto:alinares@fivetechsoft.com" OF oDlg TOOLTIP "E-mail de FiveTech"
TO
@ xx, yy URLLINK

gracias
FWH2008 | xHarbour | BCC74 | SQLRDD
User avatar
leandro
Posts: 958
Joined: Wed Oct 26, 2005 2:49 pm
Location: Colombia
Contact:

Re: UrlLink @ xx,yy

Post by leandro »

Buenos días para todos,

intente colocar la urllink sin usar el redefine, utilizando las coordenas en pantalla pero al compilar arroja error de sintaxis @, buscando en el foro encontre una manera de escribirla y compila así:

Code: Select all

                    oUrlLink:= TUrlLink():New( 160, 120, oDlg, .t., .f., oFont,;
                            "http://www.livingo.co", "Consultar en Linea" )
 
El problema ahora radica en que no me abre el link :shock: no se si hace falta algo.

De antemano gracias
Saludos
LEANDRO ALFONSO
SISTEMAS LYMA - BASE
Bogotá (Colombia)
[ FWH 19.09 ] [ xHarbour 1.2.3 Intl. (SimpLex) (Build 20190613) ] [ Embarcadero C++ 7.30 for Win32 ]
User avatar
jvtecheto
Posts: 357
Joined: Mon Mar 04, 2013 4:32 pm
Location: Spain

Re: UrlLink @ xx,yy

Post by jvtecheto »

Sistem wrote:es posible utilizar UrlLink tipo comando SAY?

FROM
REDEFINE URLLINK ID 106 URL "mailto:alinares@fivetechsoft.com" OF oDlg TOOLTIP "E-mail de FiveTech"
TO
@ xx, yy URLLINK

gracias
Prueba esto .

Code: Select all

@ 9,1 URLLINK oUrlLink OF oDlg TOOLTIP "Web de Fivewin" URL "http://www.fivetechsoft.com" 
 
Ah no te olvides del
#include "urllink.ch"

Saludos

Jose.
Fwh 19.06 32 bits + Harbour 3.2dev(r2011030937)+ Borland 7.4 + FivEdit
User avatar
leandro
Posts: 958
Joined: Wed Oct 26, 2005 2:49 pm
Location: Colombia
Contact:

Re: UrlLink @ xx,yy

Post by leandro »

Excelente Jose :D

Muchísimas gracias
Saludos
LEANDRO ALFONSO
SISTEMAS LYMA - BASE
Bogotá (Colombia)
[ FWH 19.09 ] [ xHarbour 1.2.3 Intl. (SimpLex) (Build 20190613) ] [ Embarcadero C++ 7.30 for Win32 ]
Post Reply