Shell.Explorer toolbar

Post Reply
User avatar
Enrico Maria Giordano
Posts: 8753
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Has thanked: 1 time
Been thanked: 4 times
Contact:

Shell.Explorer toolbar

Post by Enrico Maria Giordano »

This sample doesn't show the IE toolbar. Why?

Code: Select all | Expand

#include "Fivewin.ch"


STATIC FUNCTION MAIN()

    LOCAL oWnd, oIe

    DEFINE WINDOW oWnd

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

    oIe:Do( "ToolBar", .T. )

    oIe:Do( "Navigate", "www.google.com" )

    oWnd:oClient = oIe

    ACTIVATE WINDOW oWnd;
             MAXIMIZED

    RETURN NIL


EMG
User avatar
Antonio Linares
Site Admin
Posts: 42521
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 31 times
Been thanked: 76 times
Contact:

Post by Antonio Linares »

Enrico,

We have tried with:

oIe:SetProp( "ToolBar", .T. )

and same result. We don't know why it does not shows :-(
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Enrico Maria Giordano
Posts: 8753
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Has thanked: 1 time
Been thanked: 4 times
Contact:

Post by Enrico Maria Giordano »

Thank you anyway, Antonio.

EMG
Post Reply