Article ID: 2527109 - Last Review: April 7, 2011 - Revision: 2.0 How to create a tabbed web browser
On This PageINTRODUCTIONThis article describes an All-In-One Code Framework sample that is available for download. This sample demonstrates how to create a tabbed web browser.
Difficulty levelCollapse this image ![]() Download informationTo download this code sample, click one of the following links:Technical overviewEnable the "Open in new Tab" context command in a WebBrowser controlThe "Open in new Tab" context command is disabled in the WebBrowser control by default, you can add the *.exe=1 value to the following registry key:HKCU\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_TABBED_BROWSING
Disable the WebBrowser control and open the link in a new instance of an Internet Explorer windowIf the "Open in new Tab" context command is clicked, the link will be open in a new instance of an Internet Explorer window by default. The interface of the DWebBrowserEvents2 event designates an event sink interface so that an application must implement to receive event notifications from a WebBrowser control or from the Windows Internet Explorer application. The event notifications include the NewWindow3 event handler that means the WebBrowser control will open the link in a new instance of an Internet Explorer window. You can handle this event and set the Cancel property of the event argument to TRUE. Therefore, the WebBrowser control will cancel this operation.Create a new tab to display the link in an applicationAfter setting the Cancel property of the event argument in the NewWindow3 event handler, you can create a new tab which contains a WebBrowser control to display the link.Note For more information about how to create and deploy the sample application, see the Readme.txt file that is included in the download package. Technology category
PrerequisitesThis sample application was created by using Microsoft Visual Studio 2010 and Microsoft .NET Framework 4.LanguagesThis code sample contains the following programming languages:Collapse this table
MORE INFORMATIONWhat is All-In-One Code Framework?All-In-One Code Framework shows most Microsoft development techniques by using code samples in different programming languages. Each example is carefully selected, composed, and documented to show one common code scenario. For more information about All-In-One Code Framework, visit the following Microsoft website:http://1code.codeplex.com
(http://1code.codeplex.com/)
How to find more All-In-One Code Framework samplesTo find more All-In-One Code Framework samples, search for "kbcodefx" together with related keywords on the Microsoft support Web site. Or, visit the following Microsoft website:All-In-One Code Framework samples
(http://support.microsoft.com/search/default.aspx?query=kbcodefx)
REFERENCESFor more information about the DWebBrowserEvents2 interface, visit the following MSDN website: General information about the DWebBrowserEvents2 interface
(http://msdn.microsoft.com/en-us/library/aa768283(VS.85).aspx)
For more information about the WebBrowser.CreateSink method, visit the following Microsoft website: General information about the WebBrowser.CreateSink method
(http://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.createsink.aspx)
Rapid publishing disclaimerMicrosoft corporation and/or its respective suppliers make no representations about the suitability, reliability, or accuracy of the information and related graphics contained herein. All such information and related graphics are provided "as is" without warranty of any kind. Microsoft and/or its respective suppliers hereby disclaim all warranties and conditions with regard to this information and related graphics, including all implied warranties and conditions of merchantability, fitness for a particular purpose, workmanlike effort, title and non-infringement. You specifically agree that in no event shall Microsoft and/or its suppliers be liable for any direct, indirect, punitive, incidental, special, consequential damages or any damages whatsoever including, without limitation, damages for loss of use, data or profits, arising out of or in any way connected with the use of or inability to use the information and related graphics contained herein, whether based on contract, tort, negligence, strict liability or otherwise, even if Microsoft or any of its suppliers has been advised of the possibility of damages.Note This is a "FAST PUBLISH" article created directly from within the Microsoft support organization. The information contained herein is provided as-is in response to emerging issues. As a result of the speed in making it available, the materials may include typographical errors and may be revised at any time without notice. See Terms of Use
(http://go.microsoft.com/fwlink/?LinkId=151500)
for other considerations.
| Other Resources Other Support Sites
Community |






Windows Live
Facebook
Twitter
Linkedin
Digg it
Yahoo
Delicious
StumbleUpon
Yammer
Reddit
Technorati
FriendFeed
Email
Back to the top


