OL98: How to Display a Web Page in an Outlook Form

ID: Q181267

The information in this article applies to:

SUMMARY

This article describes how to display a Web page on a Microsoft Outlook 98 custom form page.

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft Support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

   http://www.microsoft.com/support/supportnet/refguide/default.asp

You can create a custom form in Outlook that displays a Web page directly on the form using the Microsoft Web Browser Control. This control is part of the Shdocvw.dll file, which is installed with Microsoft Internet Explorer.

WARNING: The Web Browser Control used to display the form must be from the same version or a newer version of the Shdocvw.dll file as that used to create the form. For instance, if the custom form is created using the Shdocvw.dll file from Microsoft Internet Explorer version 3.x, you can display it on a computer using either Microsoft Internet Explorer 3.x or 4.0. However, the reverse will not work. If the custom form is created using a Shdocvw.dll file from Microsoft Internet Explorer 4.0, you cannot display it on a computer using Microsoft Internet Explorer 3.x. In this event, you will receive the following error message when you try to display the Web page:

   Could not load an object because it is not available on this machine.

If you want to create a form that can be used with multiple versions of Microsoft Internet Explorer, create the form on a computer that uses the older version.

How to Create a Custom Form to Display a Web Page

 1. On the File menu, point to New, and then click Mail Message.

 2. In the message window, point to Forms on the Tools menu, and then click
    Design This Form.

 3. Click the (P.2) page of the form.

 4. On the Form menu, click Control Toolbox.

 5. In the Toolbox, right-click a blank area on the Controls page, and then
    click Custom Controls.

 6. In the Available Controls list, click Microsoft Web Browser Control,
    and then click OK.

 7. In the Toolbox, click the WebBrowser and drag it to the form page.

 8. In the Toolbox, click the CommandButton and drag it to the form page.

 9. On the Form menu, click View Code.

10. In the Script Editor, type the following code:

       Sub CommandButton1_Click()
          Set MyPage = Item.GetInspector.ModifiedFormPages("P.2")
          MyPage.WebBrowser1.Navigate("http://www.microsoft.com")
       End Sub

11. Close Script Editor.

12. On the Form menu, click Run This Form to start run mode.

13. Switch to the P.2 page, and click CommandButton1 to display the

    Web page.

REFERENCES

For more information about creating solutions with Microsoft Outlook 98, please see the following articles in the Microsoft Knowledge Base:

   Article-ID: Q180826
   Title     : OL98: Resources for Custom Forms and Programming

   Article-ID: Q182349
   Title     : OL98: Questions About Custom Forms and Outlook Solutions

Additional query words: OutSol OutSol98 IE
Keywords          : kbdta kbdtacode OffVBS FmsHowto 
Version           : WINDOWS:98
Platform          : WINDOWS
Issue type        : kbhowto

Last Reviewed: May 17, 1999