FIX: MAPI: Calling ResolveName Method Results in GP Fault (147571)



The information in this article applies to:

  • Microsoft Visual FoxPro for Windows 3.0
  • Microsoft Visual FoxPro for Windows 3.0b
  • Microsoft Visual FoxPro for Windows 5.0

This article was previously published under Q147571

SYMPTOMS

A general protection (GP) fault occurs when the ResolveName method of a Message Control object is called.

CAUSE

The RecipDisplayName property of the Message Control object is null.

WORKAROUND

Before calling the ResolveName method, make sure you have populated the RecipDisplayName property with a non-null value.

STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. This problem has been fixed in Visual FoxPro 5.0a.

MORE INFORMATION

Steps to Reproduce Problem

  1. Create a new form, and place MAPI Message and Session controls on it. Name the controls OLEMessageCtrl and OLESessionCtrl respectively.
  2. Place a command button on the form, and place the following code in the command button's Click event:
       ThisForm.OLESessionCtrl.SignOn
    
       WITH ThisForm.OleMessageCtrl
    
         .SessionID = ThisForm.OleSessionCtrl.SessionID
         .Compose
         .RecipAddress = "xxx"
         .ResolveName
         .Send(1)
    
       ENDWITH
    							

Modification Type:MajorLast Reviewed:10/15/2003
Keywords:kbBug kbfix kbinterop kbvfp500aFIX KB147571