this.axWebBrowser1.ShowBrowserBar(ref object pvaClsid, ref object

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Basically, I am trying to add a back and forward button to my AxWebBrowser so
I'm trying to use ShowBrowserBar. Has anyone ever used the command
this.axWebBrowser1.ShowBrowserBar(ref object pvaClsid, ref object pvarShow,
ref object pvarSize);

I'm wondering what I'm supposed to send in as paramenters. Or if there is a
better way to do what I'm trying to do.

Thank you.
Susan
 
Susan,

The documentation at (watch for line wrap):

http://msdn.microsoft.com/library/d...bbrowser/reference/methods/showbrowserbar.asp

States that the first parameter is a stirng representing the class id of
the browser bar to show. The second is whether to show it or not, and the
last is ignored.

However, at the very bottom, it says that this method is ignored for the
web browser object, so I don't think that calling it is going to have any
effect.

Hope this helps.
 
Back
Top