Outlook Banter

Outlook Banter (http://www.outlookbanter.com/)
-   Outlook - Using Forms (http://www.outlookbanter.com/outlook-using-forms/)
-   -   Forms - Unable to view form in reading pane (http://www.outlookbanter.com/outlook-using-forms/42942-forms-unable-view-form-reading.html)

Bill R March 9th 07 12:43 AM

Forms - Unable to view form in reading pane
 
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.

Bill R March 9th 07 12:53 AM

Forms - Unable to view form in reading pane
 
So I have tracked it down to using the form send handler.

If I add:

Function Item_Send()

End Function

The message will not show up in the reading pane. Any thoughts?

Bill R.

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


cynthia March 9th 07 06:31 AM

Forms - Unable to view form in reading pane
 
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.


Bill R March 9th 07 03:28 PM

Forms - Unable to view form in reading pane
 
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.


Sue Mosher [MVP-Outlook] March 9th 07 04:29 PM

Forms - Unable to view form in reading pane
 
You could use VBScript behind the form to create a totally new message and then not send the original custom form message.

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


Hollis Paul March 9th 07 07:42 PM

Forms - Unable to view form in reading pane
 
In article ,
=?Utf-8?B?QmlsbCBS?= wrote:
Is there any other way to dynamically build the email message without using
VBScript?

Well, yes. There is CDO, in various versions available. But you really,
really do not want to go there. It is a rather bizarre programming language.

And, it would not solve your problem. The restriction is to code behind your
form, not just VBScript.

--
Hollis Paul
Mukilteo, WA USA



Bill R March 9th 07 11:27 PM

Forms - Unable to view form in reading pane
 
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.

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



Sue Mosher [MVP-Outlook] March 10th 07 01:40 AM

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.




All times are GMT +1. The time now is 11:19 AM.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2006 OutlookBanter.com