Microsoft KB Archive/175515: Difference between revisions

From BetaArchive Wiki
m (Text replacement - """ to """)
m (Text replacement - "&" to "&")
 
Line 107: Line 107:
[[../166368|166368]] OL97: How to Get Help Programming with Outlook<br />
[[../166368|166368]] OL97: How to Get Help Programming with Outlook<br />
<br />
<br />
[[../170783|170783]] OL97: Q&amp;A: Questions about Customizing or Programming Outlook
[[../170783|170783]] OL97: Q&A: Questions about Customizing or Programming Outlook





Latest revision as of 12:30, 21 July 2020

Article ID: 175515

Article Last Modified on 2/12/2007



APPLIES TO

  • Microsoft Outlook 97 Standard Edition



This article was previously published under Q175515

SUMMARY

This article describes how to display a Web page on a Microsoft Outlook 97 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 a Microsoft Certified Partner or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Partners, please visit the following Microsoft Web site:

For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:

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, 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.


REFERENCES

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

166368 OL97: How to Get Help Programming with Outlook

170783 OL97: Q&A: Questions about Customizing or Programming Outlook



Additional query words: OutSol OutSol97 IE

Keywords: kbcode kbinfo kbprogramming KB175515