cablehead

I had a link to msdn (lost it)...for navigating with shdocvw that included flags:

guessing...

OpeninNewTab

ForceSameTab....ect.

object p = null;

Could add Flag...for tabs...

Explorer.Navigate(.URL, ref p, ref p, ref p, ref p);

I need to open in the same tab.

TIA




Re: Internet Explorer Extension Development Navigate Flags

John Sudds - MSFT

BrowserNavConstants Enumerated Type

http://msdn2.microsoft.com/en-us/library/aa768360.aspx

However, to open in the same tab (the one that is currently displayed) you don't need to specify any flags.






Re: Internet Explorer Extension Development Navigate Flags

cablehead

Yes, I see that now...there is no flag. I'm navigating with a bandobject that was....navigating both (or more) open tabs to the new url.

Had to use a bool in WindowStateChanged for just the active tab.