Search found 30 matches: oie

Return to advanced search

Re: xHarbour.org updated!

... "&Cancel" SIZE 30, 12 OF oDlg ACTION oDlg:End() CANCEL ACTIVATE DIALOG oDlg CENTERED Return nil FUNCTION WebPageSource(cUrl) local oIE,cTXT,cHTML,cMemo:="" local cString LOCAL cString1,cString2 LOCAL oUrl, oCli,lOk DEFAULT cUrl := "https://www.bcv.org.ve" BEGIN ...
by wartiaga
Mon Sep 18, 2023 7:22 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 39075

Questions about WebView

Hi, 1. In IE I can get the web page document so oIE:GetProp("Document"). Can I do this in WebView ? 2/ There is a Navigate method in the WebView class. Is it possible to use it to download HTML text from a file ? 3. When I launch WebView, ...
by Natter
Wed Nov 23, 2022 1:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Questions about WebView
Replies: 26
Views: 1681

Error al crear el objeto InternetExplorer.Application

... estoy invocando una APP WEB que hace un proceso y devuelve un resultado, actualmente lo hago asi: clicksing:="www.appweb.com" TRY oIE:=CreateObject("InternetExplorer.Application") // Primer intento CATCH MsgWait("Error al crear el componente InternetExplorer.Application ...
by Enrrique Vertiz
Sat Sep 25, 2021 3:46 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error al crear el objeto InternetExplorer.Application
Replies: 3
Views: 410

Re: Win10 IE problem?

... Richard, I tested with the attached code on my brand-new Surface. I have to check allow and then all is working. Interesting: I also tested with oIE := TActiveX():New( NIL, "Shell.Explorer.2",10,10,600,400 ) In this case, it seems that scripts are blocked. I see the web page but CSS ...
by Otto
Fri Jul 30, 2021 10:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Win10 IE problem?
Replies: 9
Views: 1007

COMO ABRIR UNA WEB CON CHROME

... datos pero la misma consultada en Chrome si da resultados. como usar el Chrome. muchas gracias de antemano Function TCambioSunat(nMes,nAno) local oIe,WshShell,oDoc,nPos, oForm, oObj,cName,oElem,oWait Local mResultado :={} local cUrl := "https://e-consulta.sunat.gob.pe/cl-at-ittipcam/tcS01Alias ...
by CARLOS ATUNCAR
Fri Dec 18, 2020 1:26 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: COMO ABRIR UNA WEB CON CHROME
Replies: 2
Views: 815

Re: app crash on ShellExecute()

Hello, Thank you for this code. I use it now to open my help system on the internet. I inserted the line oIE := NIL . Otherwise, the code calling twice errored out. Best regards Otto Function WebBrowser(cUrl,lvisible)    local oIE := CREATEOBJECT( "InternetExplorer.Application" ...
by Otto
Fri Jan 31, 2020 3:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: app crash on ShellExecute()
Replies: 10
Views: 3174

Re: Activex no funciona en Internet Explorer

... funcionar correctamente , se quedaba congelado supongo por que no ejecutaba uno de los códigos internos de la página . mi solución paso por usar oIE := win_oleCreateObject( "InternetExplorer.Application" ) . Cualquier noticia nueva es bienvenida :-)
by mastintin
Thu Nov 23, 2017 8:09 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Activex no funciona en Internet Explorer
Replies: 5
Views: 2201

Re: Quien me ayuda...Adquirir datos de respuesta de una web

What is the purpose of these lines?
softruz wrote: while upper(alltrim(cTextoHTML))==alltrim(upper(oIE:Document:body:innerHTML()))
SysRefresh()
end while
return


I'd add oIE:quit() after cTextoHTML:=oIE:Document:body:innerHTML() to free memory and avoid leaving hidden IE instances.
by ADutheil
Sat Apr 01, 2017 8:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Quien me ayuda...Adquirir datos de respuesta de una web
Replies: 11
Views: 2511

Re: Quien me ayuda...Adquirir datos de respuesta de una web

Ya he encontrado la solucion. function getresulthtml() local oIE:=nil,cURL:="",j:=0 local cBody:="",cTextoTXT:="",cTextoHTML:="",aElement:={} oIE := CREATEOBJECT( "InternetExplorer.Application" ) WITH OBJECT ...
by softruz
Wed Mar 29, 2017 7:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Quien me ayuda...Adquirir datos de respuesta de una web
Replies: 11
Views: 2511

Re: Quien me ayuda...Adquirir datos de respuesta de una web

... funciones diferentes pero ninguna funciona, aqui las que he probado pero nada function test(othis) local cUrl:="",oHttp:="",oIE:=nil,cbody:="",i:=0 cUrl:="https://maps.googleapis.com/maps/api/geocode/xml?address=calle juan de cervantes 38" //cUrl:="http://server/leaflet/html/index.html?latfrom=37.899926&lngfrom=-4.731114&latto=37.587115" ...
by softruz
Fri Mar 24, 2017 8:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Quien me ayuda...Adquirir datos de respuesta de una web
Replies: 11
Views: 2511

Re: Internet Explorer ó Google Chrome

   IE := ToleAuto():New("InternetExplorer.application")    oIE:Navigate("www.loquenecestes.com")   oIE:Document:ExecCommand("SaveAS","2","tuarchivo.txt")   pero la ...
by karinha
Fri Jan 31, 2014 12:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Internet Explorer ó Google Chrome
Replies: 4
Views: 1127

Re: How to print HTML file?

... 6 #Define OLECMDEXECOPT_PROMPTUSER 1 #Define OLECMDEXECOPT_DONTPROMPTUSER 2 FUNCTION PrintHtml(cHtmlOrUrl,nCopies,lShow) static oWnd:=nil, oBar, oIe local i default lShow:=.f.,nCopies:=1 if oWnd=nil DEFINE WINDOW oWnd DEFINE BUTTONBAR oBar OF oWnd DEFINE BUTTON OF oBar; PROMPT 'Print'; ACTION ...
by Jose Dolar
Tue Jan 14, 2014 5:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to print HTML file?
Replies: 4
Views: 1339

Problema con CreateObject + InternetExplorer

... que me echárais una mano, en un problema que tengo. Desde un programa nuestro, accedemos a distintas paginas web de la siguiente manera, oIE := CREATEOBJECT( "InternetExplorer.Application" ) WITH OBJECT oIE :Visible := .t. :ToolBar := .f. :StatusBar := .f. :MenuBar := .f. :FullScreen ...
by Mike Serra
Mon Aug 05, 2013 10:35 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con CreateObject + InternetExplorer
Replies: 1
Views: 618

Re: Execute a php script

Marco Looking at your code .. I would say YES .. (if) you will be opening another instance of IE each time you initialize oIE:=CreateObject("InternetExplorer.Application"). I do not see how you are re-calling your program after it exits .. but I would insert oIE:Quit() in ...
by Rick Lipkin
Tue Jun 25, 2013 2:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Execute a php script
Replies: 8
Views: 1683

Execute a php script

Hi all, I should execute a php script via IE every 1 minute. I made the following routine and it seems runs well but I'm in doubt if calling oIE:Navigate several time I could have a memory leak. What do you think about ? function main() cVar:="http://www.scritps/scripts.php" oIE:=CreateObject("InternetExplorer.Application") ...
by Marco Turco
Tue Jun 25, 2013 1:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Execute a php script
Replies: 8
Views: 1683
Next

Return to advanced search