... DEFINE WINDOW oChildWnd FROM 0,0 TO 600,800 PIXEL TITLE "PORTO SEGUROS"
oActiveX = TActiveX():New( oChildWnd, "Shell.Explorer.2" )
oActivex:Silent := .T.
oChildWnd:oClient = oActiveX
oActiveX:Do( "Navigate2", cSite )
ACTIVATE WINDOW oChildWnd
RETURN NIL
// FIN / END
Regards, saludos.
Search found 75 matches: navigate2
Searched query: navigate2
- Wed Sep 20, 2023 1:11 pm
- Forum: WhatsNew / Novedades
- Topic: xHarbour.org updated!
- Replies: 172
- Views: 120489
- Mon Jun 26, 2023 10:41 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Shell.Explorer.2 problem
- Replies: 12
- Views: 2342
Re: Shell.Explorer.2 problem
... 1 PIXEL
oActiveX = TActiveX():New( oChildWnd, "Shell.Explorer.2" )
oActivex:Silent := .T.
oChildWnd:oClient = oActiveX
// oActiveX:Do( "Navigate2", "http://www.fivetechsoft.com" )
//oActiveX:Do( "Navigate2", "https://app.pedidosbcn.com/tienda/tiendadepizzas" )
oActivex:SetFocus ...
oActiveX = TActiveX():New( oChildWnd, "Shell.Explorer.2" )
oActivex:Silent := .T.
oChildWnd:oClient = oActiveX
// oActiveX:Do( "Navigate2", "http://www.fivetechsoft.com" )
//oActiveX:Do( "Navigate2", "https://app.pedidosbcn.com/tienda/tiendadepizzas" )
oActivex:SetFocus ...
- Fri Nov 25, 2022 9:46 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Questions about WebView
- Replies: 26
- Views: 2825
Re: Questions about WebView
oDlg:oClient:=TActiveX():New(oDlg, "Shell.Explorer.2", 0, 0, oDlg:nWidth, oDlg:nHeight)
oDlg:oClient:Do("Navigate2", "https://www.website/")
do while .T.
oDk:=oDlg:oClient:GetProp("Document")
if valtype(oDk)="U".or.oDk:ReadyState!="complete"
WaitMessage()
SysRefresh()
else
lOk:=.T.
exit ...
oDlg:oClient:Do("Navigate2", "https://www.website/")
do while .T.
oDk:=oDlg:oClient:GetProp("Document")
if valtype(oDk)="U".or.oDk:ReadyState!="complete"
WaitMessage()
SysRefresh()
else
lOk:=.T.
exit ...
- Sat Sep 25, 2021 3:46 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: Error al crear el objeto InternetExplorer.Application
- Replies: 3
- Views: 542
Error al crear el objeto InternetExplorer.Application
... a veces NO
retu .f.
END
WITH OBJECT oIE
:Visible := .F.
:ToolBar := .F.
:FullScreen := .F.
:Invoke( "Navigate", cURL )
END WITH
TRY
oIE:Navigate2( clinkSing )
CATCH oErr1
TRY
oIE:Navigate( clinkSing )
CATCH oErr2
MsgWait("Error al tratar de firmar documento","No firmo",2)
retu .f.
END ...
retu .f.
END
WITH OBJECT oIE
:Visible := .F.
:ToolBar := .F.
:FullScreen := .F.
:Invoke( "Navigate", cURL )
END WITH
TRY
oIE:Navigate2( clinkSing )
CATCH oErr1
TRY
oIE:Navigate( clinkSing )
CATCH oErr2
MsgWait("Error al tratar de firmar documento","No firmo",2)
retu .f.
END ...
- Sat Sep 18, 2021 3:35 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Ajustar contenido página web en control TDockPnel
- Replies: 22
- Views: 3347
Re: Ajustar contenido página web en control TDockPnel
... PIXEL TITLE cTitle
oActiveX = TActiveX():New( oChildWnd, "Shell.Explorer.2" )
oActivex:Silent := .T.
oChildWnd:oClient = oActiveX
oActiveX:Do( "Navigate2", "http://www.fivetechsoft.com" )
oActivex:SetFocus()
ACTIVATE WINDOW oChildWnd
RETURN NIL
// FIN
Regards, saludos.
oActiveX = TActiveX():New( oChildWnd, "Shell.Explorer.2" )
oActivex:Silent := .T.
oChildWnd:oClient = oActiveX
oActiveX:Do( "Navigate2", "http://www.fivetechsoft.com" )
oActivex:SetFocus()
ACTIVATE WINDOW oChildWnd
RETURN NIL
// FIN
Regards, saludos.
- Mon Jun 21, 2021 9:54 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: BBCode para Edit - Memo
- Replies: 3
- Views: 1173
Re: BBCode para Edit - Memo
... oDlg SIZE 300,300 PIXEL TRUEPIXEL @ 20,20 ACTIVEX oActivex PROGID "Shell.Explorer.2" SIZE 260,260 OF oDlg oDlg:bInit := { || oActivex:Navigate2( TrueName( "temp.html" ) ) } ACTIVATE DIALOG oDlg CENTERED
https://imagizer.imageshack.com/v2/xq90/924/nNE29n ...
https://imagizer.imageshack.com/v2/xq90/924/nNE29n ...
- Fri Dec 18, 2020 1:26 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: COMO ABRIR UNA WEB CON CHROME
- Replies: 2
- Views: 989
COMO ABRIR UNA WEB CON CHROME
... oIE
:Visible := .F.
:ToolBar := .F.
:StatusBar := .F.
:MenuBar := .F.
:FullScreen := .F.
:Invoke( "Navigate", cURL )
END WITH
TRY
oIE:Navigate2( cUrl )
CATCH oErr
TRY
oIE:Navigate( cUrl )
CATCH oErro
END
END
WHILE oIE:Busy
SysWait(1)
SysRefresh()
Loop
END
HB_IDLESLEEP( 1 )
nPos ...
:Visible := .F.
:ToolBar := .F.
:StatusBar := .F.
:MenuBar := .F.
:FullScreen := .F.
:Invoke( "Navigate", cURL )
END WITH
TRY
oIE:Navigate2( cUrl )
CATCH oErr
TRY
oIE:Navigate( cUrl )
CATCH oErro
END
END
WHILE oIE:Busy
SysWait(1)
SysRefresh()
Loop
END
HB_IDLESLEEP( 1 )
nPos ...
- Wed Jan 24, 2018 10:12 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: html class
- Replies: 14
- Views: 2844
html class
... MemoWrit(cPath+"MiHtml.htm",chtml)
DEFINE WINDOW ohtmlDlg TITLE "Mostra la licenza"
oActiveX := TActiveX():New( ohtmlDlg, "Shell.Explorer.2" )
ohtmlDlg:oClient = oActiveX // To fill the entire window surface
oActiveX:Do("Navigate2",cPath+"MiHtml.htm")
ACTIVATE WINDOW ohtmlDlg
RETUR NIL
DEFINE WINDOW ohtmlDlg TITLE "Mostra la licenza"
oActiveX := TActiveX():New( ohtmlDlg, "Shell.Explorer.2" )
ohtmlDlg:oClient = oActiveX // To fill the entire window surface
oActiveX:Do("Navigate2",cPath+"MiHtml.htm")
ACTIVATE WINDOW ohtmlDlg
RETUR NIL
- Tue May 02, 2017 7:20 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: html
- Replies: 1
- Views: 436
Re: html
... oActiveX
MemoWrit(cPath+"MiHtml.htm",chtml)
DEFINE WINDOW ohtmlDlg TITLE "html test
oActiveX := TActiveX():New( ohtmlDlg, "Shell.Explorer.2" )
ohtmlDlg:oClient = oActiveX // To fill the entire window surface
oActiveX:Do("Navigate2",cPath+"MiHtml.htm")
ACTIVATE WINDOW ohtmlDlg
RETUR NIL
MemoWrit(cPath+"MiHtml.htm",chtml)
DEFINE WINDOW ohtmlDlg TITLE "html test
oActiveX := TActiveX():New( ohtmlDlg, "Shell.Explorer.2" )
ohtmlDlg:oClient = oActiveX // To fill the entire window surface
oActiveX:Do("Navigate2",cPath+"MiHtml.htm")
ACTIVATE WINDOW ohtmlDlg
RETUR NIL
- 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: 3335
Re: Quien me ayuda...Adquirir datos de respuesta de una web
... OBJECT oIE
:Visible := .f.
:ToolBar := .f.
:StatusBar := .f.
:MenuBar := .f.
:FullScreen := .f.
:Left:=150
:Top:=150
END WITH
oIE:Navigate2("http://www.simjcloud.com/testing/leaflet/html/index.html?latfrom=37.899926&lngfrom=-4.731114&latto=37.587115&lngto=-4.639551")
do While oIE ...
:Visible := .f.
:ToolBar := .f.
:StatusBar := .f.
:MenuBar := .f.
:FullScreen := .f.
:Left:=150
:Top:=150
END WITH
oIE:Navigate2("http://www.simjcloud.com/testing/leaflet/html/index.html?latfrom=37.899926&lngfrom=-4.731114&latto=37.587115&lngto=-4.639551")
do While oIE ...
- Mon Mar 27, 2017 8:00 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Abrir navegador dentro de un dialogo
- Replies: 9
- Views: 2753
Re: Abrir navegador dentro de un dialogo
... el pais vale "CL"
cTemp := cFilePath(GetModuleFilename(GetInstance()))+"google\Temp.html"
MemoWrit( cTemp, cHtml )
oActiveX:Do( "Navigate2", cTemp )
return Nil
func GoogleOk( cDirecc )
cDirecc := Upper(cDirecc)
cDirecc := Trim(StrTran( cDirecc, '.', ''))
cDirecc := Trim(StrTran ...
cTemp := cFilePath(GetModuleFilename(GetInstance()))+"google\Temp.html"
MemoWrit( cTemp, cHtml )
oActiveX:Do( "Navigate2", cTemp )
return Nil
func GoogleOk( cDirecc )
cDirecc := Upper(cDirecc)
cDirecc := Trim(StrTran( cDirecc, '.', ''))
cDirecc := Trim(StrTran ...
- Mon Mar 27, 2017 7:23 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: Abrir navegador dentro de un dialogo
- Replies: 9
- Views: 2753
Re: Abrir navegador dentro de un dialogo
En efecto tendría que ser oActiveX:DO( "Navigate2", cDir ) lo otro es un "defecto" al copiar y pegar el código en el mensaje .
Como "Test" comenta el" on init" a ver si te da error o se queda en la ventana .
Tambien puede funcionar con oActiveX:DO( "Navigate", cDir ) ( sin el "2" ) .
Tu ...
Como "Test" comenta el" on init" a ver si te da error o se queda en la ventana .
Tambien puede funcionar con oActiveX:DO( "Navigate", cDir ) ( sin el "2" ) .
Tu ...
- Sun Mar 26, 2017 10:43 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Abrir navegador dentro de un dialogo
- Replies: 9
- Views: 2753
Re: Abrir navegador dentro de un dialogo
Amigo ya probé tu codigo.
Primeramente me arrojó error de sintaxis en la línea ON INIT ( oActiveX:DO( "Navigate2", cDir ) y recordando lo que lei anoche, el amigo cristóbal navarro recomendaba sustituir ":" por ":" de manera que quedara oActiveX:DO( "Navigate2", cDir ) ) (por lo menos ...
Primeramente me arrojó error de sintaxis en la línea ON INIT ( oActiveX:DO( "Navigate2", cDir ) y recordando lo que lei anoche, el amigo cristóbal navarro recomendaba sustituir ":" por ":" de manera que quedara oActiveX:DO( "Navigate2", cDir ) ) (por lo menos ...
- Fri Jan 27, 2017 10:11 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Capturar respuesta de WEB.
- Replies: 2
- Views: 577
Capturar respuesta de WEB.
... la respuesta de una web cuando la llamo así:
oActiveX = TActiveX():New( oWndWeb, "Shell.Explorer" )
oWndWeb:oClient = oActiveX
oWndWeb:Resize()
oActiveX:Do( "Navigate2", cWeb )
He buscado un poco por la red y no doy con ello, y lo que encuentro en este foro por ahora tampoco.
Gracias,
oActiveX = TActiveX():New( oWndWeb, "Shell.Explorer" )
oWndWeb:oClient = oActiveX
oWndWeb:Resize()
oActiveX:Do( "Navigate2", cWeb )
He buscado un poco por la red y no doy con ello, y lo que encuentro en este foro por ahora tampoco.
Gracias,
- Tue Jan 24, 2017 7:36 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Problema ao Abrir um SITE pelo FIVEWIN(Solucionado)
- Replies: 17
- Views: 5836
Re: Problema ao Abrir um SITE pelo FIVEWIN(Solucionado)
... New( oWndChild, "Shell.Explorer.2" )
oWndChild:oClient = oActiveX // To fill the entire window surface
oWndChild:Resize()
oActiveX:Do( "Navigate2", "http://www.nfce.se.gov.br/portal/painelMonitor.jsp" )
oActiveX:Silent := .t.
ACTIVATE WINDOW oWnd
return nil
FUNCTION INTER_APP_WEB ...
oWndChild:oClient = oActiveX // To fill the entire window surface
oWndChild:Resize()
oActiveX:Do( "Navigate2", "http://www.nfce.se.gov.br/portal/painelMonitor.jsp" )
oActiveX:Silent := .t.
ACTIVATE WINDOW oWnd
return nil
FUNCTION INTER_APP_WEB ...