Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / Languages / Managed C++ / June 2006

Tip: Looking for answers? Try searching our database.

WebBroswer Object -> History

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Jay Brodie - 30 Jun 2006 22:02 GMT
I am trying to find a way to have the webbroswer object in my VC app to NOT
write the browsed sites to the normal history for the deaktop computer.

I have looked all over and cant find anything remotly close to what I need.

Can someone shed some light on this for me?  Can this be done or am I
wasting my time looking?

TIA

Jay
matthew breedlove - 01 Jul 2006 00:51 GMT
> I am trying to find a way to have the webbroswer object in my VC app to NOT
> write the browsed sites to the normal history for the deaktop computer.
[quoted text clipped - 7 lines]
>
> Jay

If you are using the IWebBrowser2 control and using
IWebBrowser2::Navigate to navigate, take a look at the Flags parameter.

It looks like it has a no history option(taken from
http://msdn.microsoft.com/workshop/browser/webbrowser/reference/enums/browsernav
constants.asp
):

typedef enum BrowserNavConstants {
    navOpenInNewWindow = 0x1,
    navNoHistory = 0x2,
    navNoReadFromCache = 0x4,
    navNoWriteToCache = 0x8,
    navAllowAutosearch = 0x10,
    navBrowserBar = 0x20,
    navHyperlink = 0x40,
    navEnforceRestricted = 0x80,
    navNewWindowsManaged = 0x0100,
    navUntrustedForDownload = 0x0200,
    navTrustedForActiveX = 0x0400,
    navOpenInNewTab = 0x0800,
    navOpenBackgroundTab = 0x1000,
    navKeepWordWheelText = 0x2000
} BrowserNavConstants;

-Matthew

Rate this thread:







Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.