Search found 75 matches: navigate2

Return to advanced search

... WINDOW oWnd @ 0, 0 ACTIVEX oActiveX PROGID "Shell.Explorer" OF oWnd oWnd:oClient = oActiveX ACTIVATE WINDOW oWnd ; ON INIT oActiveX:Do( "Navigate2",; "http://www.maerskline.com:80/appmanager/maerskline/public?_nfpb=true&portlet_quickentries_2_actionOverride=%2Fportlets%2Fquickentries%2FtrackCargo&_windowLabel=portlet_quickentries_2&_pageLabel=home",,,; ...
by cdmmaui
Wed Nov 26, 2008 1:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Retrieving a web page via shell.explorer
Replies: 53
Views: 17491

Darrell,

I believe Antonio says that you have to use the ON INIT clause like this:'

ACTIVATE WINDOW oWnd2 ON INIT oActiveX:Do( "Navigate2", cConnect,,, GetPostData( cGetPost ), "Content-Type: application/x-www-form-urlencoded" + CRLF )

Regards,
James
by James Bott
Wed Nov 26, 2008 12:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Retrieving a web page via shell.explorer
Replies: 53
Views: 17491

... FROM 0, 0 TO 40, 85 MENU oMenu TITLE 'Tracking' oActiveX = TActiveX():New( oWnd2, "Shell.Explorer" ) oWnd2:oClient = oActiveX oActiveX:Do( "Navigate2", cConnect,,, GetPostData( cGetPost ), "Content-Type: application/x-www-form-urlencoded" + CRLF ) ACTIVATE WINDOW oWnd2 MAXIMIZED
by cdmmaui
Tue Nov 25, 2008 11:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Retrieving a web page via shell.explorer
Replies: 53
Views: 17491

You can directly Navigate2 to form_test_2.asp. No need to go through the HTML page. Unless you want to show it, for some reason ? Surely we can fire the submit button if you need it. Thanks for the hint, but if I do this, I don't ...
by Patrick Mast
Wed Sep 10, 2008 4:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to fire "Submit" button in Explorere ActiveX?
Replies: 20
Views: 2528

Patrick,

You can directly Navigate2 to form_test_2.asp. No need to go through the HTML page.

Unless you want to show it, for some reason ? Surely we can fire the submit button if you need it.
by Antonio Linares
Wed Sep 10, 2008 4:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to fire "Submit" button in Explorere ActiveX?
Replies: 20
Views: 2528

Navigate2 method: http://msdn.microsoft.com/en-us/library/aa752094(VS.85).aspx Main problem here is how to translate a string like "user=username&password=mypwd" into a ByteArray (please see sub PackBytes() at http://support.microsoft.com/kb/167658 ...
by Patrick Mast
Wed Sep 03, 2008 3:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Retrieving a web page via shell.explorer
Replies: 53
Views: 17491

Navigate2 method: http://msdn.microsoft.com/en-us/library/aa752094(VS.85).aspx Main problem here is how to translate a string like "user=username&password=mypwd" into a ByteArray (please see sub PackBytes() at http://support.microsoft.com/kb/167658 ...
by Davide
Wed Sep 03, 2008 2:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Retrieving a web page via shell.explorer
Replies: 53
Views: 17491

Very useful documentation links, thanks to Davide:

"Shell.Explorer" document object:
http://msdn.microsoft.com/en-us/library/ms531073(VS.85).aspx

Navigate2 method:
http://msdn.microsoft.com/en-us/library/aa752094(VS.85).aspx
by Antonio Linares
Wed Sep 03, 2008 1:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Retrieving a web page via shell.explorer
Replies: 53
Views: 17491

Re: Opening a BMP with "Shell.Internet" question

Patrick Mast wrote:Hi,
oActiveX:Do( "Navigate2", "c:\test.bmp" )
[/code]
This always shows this dialog:


Test this

file:///C:/test.bmp

Regards, Norbert
by NK
Sun Aug 24, 2008 6:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Opening a BMP with "Shell.Internet" question
Replies: 4
Views: 831

... ACTION( lSave := .T., oDlg:End() ) REDEFINE BUTTON ID 103 OF oDlg ACTION( Ayuda() ) ACTIVATE DIALOG oDlg CENTERED ; ON INIT oActiveX:Do( "Navigate2", cServidor + cParametros ) Return nil // ---------------------------------------------------------------------------
by MOISES
Wed Jun 25, 2008 11:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: web page in a dialog
Replies: 2
Views: 681

You may also review:

fwh\samples\webexp2.prg and webexp2.rc

Modify this line this way:
ACTIVATE DIALOG oDlg CENTERED ;
ON INIT oActiveX:Do( "Navigate2", "http://www.google.com" )
by Antonio Linares
Fri Jun 20, 2008 6:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Activex in Dialog
Replies: 4
Views: 786

He encontrado que con el Createobject("InternetExplorer.Application") , consultando el MSDN, tiene objetos Navigate2 y Document , asi pues podemos hacer esto: funcion main() local oIE,cTXT,cHTML oIE:=Createobject("InternetExplorer.Application") ...
by JmGarcia
Sat May 17, 2008 6:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Codigo fuente HTML con Activex
Replies: 10
Views: 3433

Re: Codigo fuente HTML con Activex

Estoy leyendo paginas HTML con Activex, ejemplo oActiveX:Do("Navigate2",alltrim(cURL)), y con un Timer voy refrescando el contenido de la visualizacion. Me gustarian hacer 2 cosas con Activex: Quedarme con un Print-Screen (JPG) del contenido de ...
by JmGarcia
Wed May 14, 2008 10:17 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Codigo fuente HTML con Activex
Replies: 10
Views: 3433

Qual a diferença?

Qual a diferença entre "Shell.Explorer" e "Shell.Explorer2" - "Navigate" e "Navigate2" ???


code:

oActiveX = TActiveX():New( oWndmaps, "Shell.Explorer" )
oActiveX:Do( "Navigate", CurDrive() + ":\" + CurDir() + "\temp.html" )


Quando usar um ou outro?


Grato
by FWHISHOW
Fri Dec 21, 2007 7:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Qual a diferença?
Replies: 2
Views: 560

... Support" oActiveX = TActiveX():New( oWnd, "Shell.Explorer.2" ) oWnd:oClient = oActiveX // To fill the entire window surface oActiveX:Do("Navigate2",(CurDrive() + ":\"+CurDir()+"\MiHtml.htm")) ACTIVATE WINDOW oWnd RETUR NIL Amigos eu utilizo FWH7.1 e xHarbour 99.71 e percebi que só esta ...
by FWHISHOW
Wed Dec 19, 2007 12:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Para Rafael Clemente e Biel, Maps Google!
Replies: 3
Views: 1377
PreviousNext

Return to advanced search