![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
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. |
#2
|
|||
|
|||
![]()
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. |
#3
|
|||
|
|||
![]()
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. |
#4
|
|||
|
|||
![]()
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. |
#5
|
|||
|
|||
![]()
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. |
#6
|
|||
|
|||
![]()
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. |
#7
|
|||
|
|||
![]()
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. |
#8
|
|||
|
|||
![]()
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 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Can you read a form using reading pane? | tke402 | Outlook and VBA | 1 | December 20th 06 03:15 PM |
View - Reading Pane | DRVMODSS | Outlook - Using Forms | 1 | December 15th 06 10:03 PM |
Forms(One-Off) and Reading Pane | Allen | Outlook - Using Forms | 11 | March 28th 06 01:58 AM |
Reading Pane Form - Changing it | Frustrated to the MAX! | Outlook - Using Contacts | 15 | February 15th 06 10:49 PM |
set default reading pane view | Marc Seidler | Outlook - General Queries | 1 | January 26th 06 01:25 PM |