Cancel Close

  • Thread starter Thread starter MeMatthew
  • Start date Start date
M

MeMatthew

I want to cancel the form from sending and closing after the Send
button is pressed can somone help put
 
Set the return value of the Send event handler to False:

Function Item_Send()
Item_Send = False
End Function

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
COOL, 10ks for your help
Sue said:
Set the return value of the Send event handler to False:

Function Item_Send()
Item_Send = False
End Function

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
That's what the code I posted does.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Back
Top