Hide menu of the Internet explorer

Post Reply
User avatar
Silvio
Posts: 3107
Joined: Fri Oct 07, 2005 6:28 pm
Location: Teramo,Italy

Hide menu of the Internet explorer

Post by Silvio »

When I use this program I can see Internet explorer and I can navigate

Code: Select all


#include "FiveWin.ch"

function Main()

   local oWnd, oActiveX
   local cEvents := ""

   DEFINE WINDOW oWnd TITLE "fivetech"

   oActiveX = TActiveX():New( oWnd, "Shell.Explorer" )

   oWnd:oClient = oActiveX // To fill the entire window surface

   oActiveX:Do( "GoHome" )
   // oActiveX:Do( "Navigate", "http://www.fivetechsoft.com" )

    oActiveX:SetProp( "StatusBar", .t. )
   // MsgInfo( oActiveX:GetProp( "StatusBar" ) )

   oActiveX:bOnEvent = { | event, aParams | cEvents += EventInfo( event, aParams ) }

   ACTIVATE WINDOW oWnd


I want show/hide the menu when I click the left button of mouse

I want show/hide the address menu of Internet explorer

I want show/hide toolbar and status bar of IE


Best Regards
Best Regards, Saludos

Falconi Silvio
User avatar
Silvio
Posts: 3107
Joined: Fri Oct 07, 2005 6:28 pm
Location: Teramo,Italy

Post by Silvio »

Dear Antonio
can you help me for it ?
Best Regards, Saludos

Falconi Silvio
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Silvio,

Those are features of that specific activex control. They should work as you are doing it.

Sorry we can't help you on that issue, we don't know it.
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Silvio
Posts: 3107
Joined: Fri Oct 07, 2005 6:28 pm
Location: Teramo,Italy

Post by Silvio »

Now I found a code for Vb and delphi
Someone can translate it for xharbour


http://www.planet-source-code.com/vb/sc ... C101415668 ?


http://www.planet-source-code.com/vb/sc ... FA13602032
Best Regards, Saludos

Falconi Silvio
User avatar
Silvio
Posts: 3107
Joined: Fri Oct 07, 2005 6:28 pm
Location: Teramo,Italy

Post by Silvio »

FOR the GURUS :

INTERNET EXPLORER ( EVENTS, METHOD, PROPERTIES)

http://msdn.microsoft.com/library/defau ... plorer.asp


THANKS
Best Regards, Saludos

Falconi Silvio
Post Reply