Important alert: (current site time 5/23/2013 3:59:04 PM EDT)
 

winzip icon

WebBrowser Control Alternative with Custom IE Internet Explorer

Email
Submitted on: 5/7/2012 2:05:19 PM
By: Jennifer Leah  
Level: Intermediate
User Rating: By 2 Users
Compatibility: VB 4.0 (16-bit), VB 5.0, VB 6.0
Views: 4624
author picture
(About the author)
 
      Visual Basic Web browser control alternative Let's face it, when it comes to the visual basic web browser control the web browser control has not exactly been stable as Internet Explorer versions changed from Internet Explorer 62 Internet Explorer 72 Internet Explorer eight. I don't know about you but I never felt comfortable or secure about including the web browser control in any application I create because who knows how the web browser control is going to behave given the changing an unstable state of Internet Explorer as it relates to the web browser control. This code is a simple example of how you can create a user control that can be tweaked and modified to be a replacement for the web browser control. This user control demonstrates how you can create an instance of Internet Explorer and embedded objects within Internet Explorer as well as embedding Internet Explorer within objects. By using a call to create object to create an instance of Internet Explorer is much more stable. This code also shows you how to get the HWND of Internet Explorer. By studying the code you will learn a lot of neat new things about creating and manipulating Internet Explorer as well as embedding other objects within it. If you are as sick and tired of the web browser control in Visual Basic as I am in this web browser control alternative code may be just what you were looking for.

 
winzip iconDownload code

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. Afterdownloading it, you will need a program like Winzip to decompress it.Virus note:All files are scanned once-a-day by Planet Source Code for viruses, but new viruses come out every day, so no prevention program can catch 100% of them. For your own safety, please:
  1. Re-scan downloaded files using your personal virus checker before using it.
  2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.
  3. Scan the source code with Minnow's Project Scanner

If you don't have a virus scanner, you can get one at many places on the net including:McAfee.com

 
Terms of Agreement:   
By using this code, you agree to the following terms...   
  1. You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.
  2. You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
  3. You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
  4. You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.

Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Intermediate category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments

5/8/2012 12:55:02 PMvicosta

Excelent thanks 4share
(If this comment was disrespectful, please report it.)

 
5/8/2012 2:45:57 PMDave Carter

with you on the ocx Jennifer, thanks, but, forgive me, does anyone use ms internet explorer?
(If this comment was disrespectful, please report it.)

 
5/10/2012 12:49:00 PMBonnie West

If only development on the Mozilla ActiveX Control was continued, there would have been a superior alternative to IE. Also, if a WebKit ocx existed, VB Classic developers would have more choices.

Here's another way of dynamically creating the WebBrowser control:


Private WithEvents oTrident As VBControlExtender

...

Set oTrident = Me.Controls.Add("Shell.Explorer.2", "WebBrowser1")


This approach raises events from the control in a rather cumbersome manner though...
(If this comment was disrespectful, please report it.)

 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.