How prevent user sending customform

H

Henrik

Hello,
i created a outlookform with some script in it, to import
some data.
In future i would like to send this form as mail to our
users.
My problem is now, to prevent users to send this form.
Only i should have the permission to send this type of
mail.
I allready disabled the actions reply,forward.. , but with
the option 'resend the existing message' it is stil
possible for the users to send this mail.

How can i prevent users to send this type of email.
With the eventhandler 'item_send()' i found no way.

System: exchange 5.5 SP4 with Outlook 2000

Any help welcome

Thanks a lot

Henrik
 
S

Sue Mosher [MVP]

You can cancel any of the form events that use a Function event handler by setting the value of the function to False:

Function Item_Send()
If <your criteria not met> Then
Item_Send = False
End If
End Function
--
Sue Mosher, Outlook MVP
Outlook and Exchange solutions at http://www.slipstick.com
Author of
Microsoft Outlook Programming: Jumpstart
for Administrators, Power Users, and Developers
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top