PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → ActiveX_Search>>Navigate(cURL) - in linux
ActiveX_Search>>Navigate(cURL) - in linux
Iniciado por guest, 18,jun. 2015 21:24 - 3 respuestas
Publicado el 18,junio 2015 - 21:24
Hello,

I use this to display the content of an url like "http://www.MySite.com"

It works fine in Windows.

But in Linyx the activeX control is not supported.

Is there a workaround to show url from a linux program.

Thanks,

Willy Hermans
Publicado el 18,junio 2015 - 21:45
Hi Willy,

shellexecute (it wil be display in the default browser)...
Or maybe the html field..

Best regards
Publicado el 19,junio 2015 - 05:24
Hello,

Shellexecute does not work in Linux.

Maybe a HTML edit field will work but I can not place the content of an URL in it.

EDT_HTML = "http://www.mysite" does not do the job.

"test"

This does also not work

Thanks,

Willy
Publicado el 19,junio 2015 - 13:33
Hello Willy,

well, if you know what browser is installed (and that could be part of the application setup wizard), you could do an exerun of the browser with the url as parameter

Antoher way ot explore : use httprequest to download the URL content, and display the result of httpgetresult in the html field (I'm worried about JS execution, though)

Best regards