Search found 12 matches: testurl

Searched query: testurl

by Jimmy
Sun Jun 25, 2023 8:20 pm
Forum: FiveWin for Harbour/xHarbour
Topic: MsgInfo with LINK ?
Replies: 2
Views: 350

Re: MsgInfo with LINK ?

Hi,
Cgallegoa wrote:Look \fwh\samples\testurl.prg
thx for Answer

i know that i can use a LINK in RICHTEXT and also in MENUITEM (Mailto:)
i want to know if Fivewin have a Function else i have to write my "own" using a DIALOG (like in Sample you point to)
by Cgallegoa
Sun Jun 25, 2023 3:10 am
Forum: FiveWin for Harbour/xHarbour
Topic: MsgInfo with LINK ?
Replies: 2
Views: 350

Re: MsgInfo with LINK ?

Hi,

Look
  • \fwh\samples\testurl.prg
Regards,
by csincuir
Tue Feb 22, 2022 1:00 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Crear acceso directo desde ejecutable
Replies: 6
Views: 837

Re: Crear acceso directo desde ejecutable

Leandro, podrias probar tambien con URLLINK

Code: Select all | Expand

REDEFINE URLLINK ID 104 URL "www.fivetechsoft.com" OF oDlg ;
            TOOLTIP "Sitio oficial de FiveTech"


Hay un ejemplo en samples\testurl.prg

Saludos.

Carlos
by cmsoft
Thu Feb 21, 2019 9:38 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Abrir explorador internet con una variable como URL
Replies: 2
Views: 966

Re: Abrir explorador internet con una variable como URL

Hola Mariano:
Modifique el ejemplo que viene con Fivewin, testurl.prg, y le puse un boton que llame a la funcion ShellExecute, y funciona bien.
Verificaste bien que la oWnd esta definida?
Te copio el ejemplo para que lo pruebes
#include "FiveWin.ch"#include "URLLink.ch"#define COLOR_BTNFACE  15 ...
by byte-one
Thu May 15, 2014 12:34 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TURLLINK
Replies: 4
Views: 805

Re: TURLLINK

Antonio,
in the testurl.rc in samples-folder is defined a URL with LTEXT "", 106, 192, 145, 72, 9
This is not functioning, the caption is not visible!

It should be: CONTROL "", 106, "STATIC", SS_SIMPLE ....

In this and other wrong case, the turllink-class should correct the style!
by alerchster
Sat Aug 10, 2013 4:02 pm
Forum: FiveWin for Harbour/xHarbour
Topic: new bug FWH64 - UrlLink
Replies: 4
Views: 745

Re: new bug FWH64 - UrlLink

Lucas

With FHW64 Shellexecute() does not run - you can add adapted code for Shellexecute() and testurl.prg run perfectly
#include "FiveWin.ch"#include "URLLink.ch"#define COLOR_BTNFACE 15//----------------------------------------------------------------------------//function Main() local ...
by lucasdebeltran
Sat Aug 10, 2013 2:15 pm
Forum: FiveWin for Harbour/xHarbour
Topic: new bug FWH64 - UrlLink
Replies: 4
Views: 745

new bug FWH64 - UrlLink

Antonio,

samples\testurl.prg produces a GPF in FWH 64.

In FWH 32 it is ok, but it has an unreleased Font:

FONT,436868240,TURLLINK:REDEFINE(105)


Thank you.
by surGom
Tue Sep 11, 2012 10:55 pm
Forum: FiveWin para Harbour/xHarbour
Topic: consulta
Replies: 4
Views: 991

Re: consulta

Gracias por responder, no había visto en los ejemplos de Fwh el testurl... lo busque por hyperlink...

Muchas gracias

Luis
by Daniel Garcia-Gil
Fri Jan 29, 2010 11:14 am
Forum: FiveWin para Harbour/xHarbour
Topic: Enviar Mail
Replies: 3
Views: 704

Re: Enviar Mail

Hola avielo

Tienes la clase URLLINK
mira el ejemplo testurl.prg
by Marco Turco
Fri Apr 17, 2009 1:56 pm
Forum: FiveWin for Harbour/xHarbour
Topic: turllink doesn't runs with last fwh release
Replies: 1
Views: 529

turllink doesn't runs with last fwh release

Hi,
as subject. Simply compule testurl.prg.

Any solution ?

Thanks in advance

Marco


Application
===========
Path and name: K:\TESTURL\testurl.Exe (32 bits)
Size: 1,704,960 bytes
Time from start: 0 hours 0 mins 0 secs
Error occurred at: 04/17/09, 15:54:26
Error description: Error BASE/1066 ...
by fleal
Tue Feb 05, 2008 9:48 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Bajando archivo con la TURL
Replies: 0
Views: 580

Bajando archivo con la TURL

Hola foro.
El siguiente código funciona para bajar un archivo

static function TestUrl()
local oUrl, oClient

oUrl:= TUrl():New("http://www.captura.com/2007/archivo.xml")

oClient := TipClienthttp():New( oUrl )

oClient:nConnTimeout:=20000

oClient:ReadToFile( "e:\ap\archivo.xml" )

oClient ...