ID: Q175515
The information in this article applies to:
This article describes how to display a Web page on a Microsoft Outlook 97 custom form page.
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.
1. On the File menu, point to New, and then click Mail Message.
2. In the message window, click Design Outlook Form on the Tools menu.
3. Click the (P.2) tab of the form.
4. On the Form menu, click Control Toolbox.
5. In the Toolbox, right-click the Controls tab, 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 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 Tools menu, click Design Outlook Form to exit design mode.
13. Click CommandButton1 to display the Web page.
For more information about creating solutions with Microsoft Outlook 97, please see the following articles in the Microsoft Knowledge Base:
Article-ID: Q166368
Title : OL97: How to Get Help Programming with Outlook
Article-ID: Q170783
Title : OL97: Q&A: Questions about Customizing or
Programming Outlook
Additional query words: OutSol OutSol97 IE
Keywords : kbcode FmsHowto
Version : WINDOWS:97
Platform : WINDOWS
Issue type : kbinfo
Last Reviewed: May 17, 1999