View Single Post
  #8  
Old March 10th 07, 01:40 AM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Forms - Unable to view form in reading pane

It's pretty basic:

Function Item_Send()
Item_Send = False
Set newMsg = Application.CreateItem(0)
' set desired properties of newMsg
' and then
newMsg.Send
End Function

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"Bill R" wrote in message ...
Sue,

Are there any examples of this you could point me to?

Thanks,
Bill

"Sue Mosher [MVP-Outlook]" wrote:

You could use VBScript behind the form to create a totally new message and then not send the original custom form message.


"Bill R" wrote in message ...
Is there any other way to dynamically build the email message without using
VBScript?

Bill


"Cynthia" wrote:

Which version of outlook you used?

If you use Outlook 2003, it is natural. Because if you add some vbscirpt in
form's code, the message will not be shown in reading pane.

But if you use Outlook2007, it will not happen.

"Bill R" wrote:

Greetings,

I am creating a custom form that is used to create an email message to be
sent out to specific team members. I use VBScript to build the message, but
when I receive the email in my mailbox I cannot read it using the Reading
Pane. The message in the reading pane says, "This item contains active
content that cannot be displayed in the Reading Pane. Open the item to read
its contents".

I have stripped off the signature and any attachments. How do I determine
what is causing the form to be unviewable in the reader pane?

Thanks,
Bill R.


Ads