- Code: Select all Expand view
#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