![]() |
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
|
|||
|
|||
![]()
I have successfully designed the form I want, it shows up appropriately for
other Outlook users... However, is there a way to at least make it show up in a readable format for other email program users... like Yahoo mail users? I don't want them to interact/fill in/change the the form... just be able to read it. |
Ads |
#2
|
|||
|
|||
![]()
No. That's how forms work, and that's why they're not recommended for use outside your own organization: You can't count on the recipient having Outlook.
You didn't say what the form does. Maybe a solution is to put code in its Item_Send event handler to generate a new, non-custom-form message that has the desired content. -- 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 "errandgirlcg" wrote in message ... I have successfully designed the form I want, it shows up appropriately for other Outlook users... However, is there a way to at least make it show up in a readable format for other email program users... like Yahoo mail users? I don't want them to interact/fill in/change the the form... just be able to read it. |
#3
|
|||
|
|||
![]()
The form contains appointment/event confirmation information. I need to
standardize the content sent to clients... so a form is a good solution to ensure every client receives confirmation info needed (and reminds me to provide it). Hints as to the process to "put code in its Item_Send event handler to generate a new, non-custom-form message that has the desired content"? "Sue Mosher [MVP-Outlook]" wrote: No. That's how forms work, and that's why they're not recommended for use outside your own organization: You can't count on the recipient having Outlook. You didn't say what the form does. Maybe a solution is to put code in its Item_Send event handler to generate a new, non-custom-form message that has the desired content. -- 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 "errandgirlcg" wrote in message ... I have successfully designed the form I want, it shows up appropriately for other Outlook users... However, is there a way to at least make it show up in a readable format for other email program users... like Yahoo mail users? I don't want them to interact/fill in/change the the form... just be able to read it. |
#4
|
|||
|
|||
![]()
Also, I tried using the Outlook standard "task" item - sent it to a Yahoo
account and the forwarded task arrived as an "untitled attachment". When I attempted to open it it had only this inside "This attachment is a MAPI 1.0 embedded message and is not supported by this mail system." I am simply trying to send a confirmation/reminder of a client booking/event to a client via email. Any suggestions? "Sue Mosher [MVP-Outlook]" wrote: No. That's how forms work, and that's why they're not recommended for use outside your own organization: You can't count on the recipient having Outlook. You didn't say what the form does. Maybe a solution is to put code in its Item_Send event handler to generate a new, non-custom-form message that has the desired content. -- 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 "errandgirlcg" wrote in message ... I have successfully designed the form I want, it shows up appropriately for other Outlook users... However, is there a way to at least make it show up in a readable format for other email program users... like Yahoo mail users? I don't want them to interact/fill in/change the the form... just be able to read it. |
#5
|
|||
|
|||
![]()
Again, a task item is specific to Outlook. A mail program other than Outlook can do nothing with it.
-- 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 "errandgirlcg" wrote in message ... Also, I tried using the Outlook standard "task" item - sent it to a Yahoo account and the forwarded task arrived as an "untitled attachment". When I attempted to open it it had only this inside "This attachment is a MAPI 1.0 embedded message and is not supported by this mail system." |
#6
|
|||
|
|||
![]()
My suggestion would work only for a custom message form, not for a custom appointment form.
A custom form is simply not a good solution for your scenario. If this is for your personal use, a VBA macro to take the information in the selected appointment (see http://www.outlookcode.com/codedetail.aspx?id=50) and generate a mail message (Application.CreateItem) might do the trick. -- 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 "errandgirlcg" wrote in message ... The form contains appointment/event confirmation information. I need to standardize the content sent to clients... so a form is a good solution to ensure every client receives confirmation info needed (and reminds me to provide it). Hints as to the process to "put code in its Item_Send event handler to generate a new, non-custom-form message that has the desired content"? "Sue Mosher [MVP-Outlook]" wrote: No. That's how forms work, and that's why they're not recommended for use outside your own organization: You can't count on the recipient having Outlook. You didn't say what the form does. Maybe a solution is to put code in its Item_Send event handler to generate a new, non-custom-form message that has the desired content. "errandgirlcg" wrote in message ... I have successfully designed the form I want, it shows up appropriately for other Outlook users... However, is there a way to at least make it show up in a readable format for other email program users... like Yahoo mail users? I don't want them to interact/fill in/change the the form... just be able to read it. |
#7
|
|||
|
|||
![]()
Actually, tried sending a task status report (tools/send status) and this is
a great solution for me WITH the addition of a few custom fields. I added a custom field to the standard task form, published, and then tried to send a status report... unfortunately the new custom field doesn't show up. How do I make the new custom field show up in the task status report? This isn't because the recipient isn't using Outlook... it just doesn't show up when MY Outlook creates the status report. "Sue Mosher [MVP-Outlook]" wrote: Again, a task item is specific to Outlook. A mail program other than Outlook can do nothing with it. -- 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 "errandgirlcg" wrote in message ... Also, I tried using the Outlook standard "task" item - sent it to a Yahoo account and the forwarded task arrived as an "untitled attachment". When I attempted to open it it had only this inside "This attachment is a MAPI 1.0 embedded message and is not supported by this mail system." |
#8
|
|||
|
|||
![]()
As I understand it, the status report is not intended to be an exact duplicate of the original task item. It just reports status. Also, not being a published form (it's produced on the fly from the original task), it couldn't show any custom fields even if it did contain that information.
-- 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 "errandgirlcg" wrote in message ... Actually, tried sending a task status report (tools/send status) and this is a great solution for me WITH the addition of a few custom fields. I added a custom field to the standard task form, published, and then tried to send a status report... unfortunately the new custom field doesn't show up. How do I make the new custom field show up in the task status report? This isn't because the recipient isn't using Outlook... it just doesn't show up when MY Outlook creates the status report. "Sue Mosher [MVP-Outlook]" wrote: Again, a task item is specific to Outlook. A mail program other than Outlook can do nothing with it. "errandgirlcg" wrote in message ... Also, I tried using the Outlook standard "task" item - sent it to a Yahoo account and the forwarded task arrived as an "untitled attachment". When I attempted to open it it had only this inside "This attachment is a MAPI 1.0 embedded message and is not supported by this mail system." |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
importing custom fields into a custom form | susan lasalle | Outlook - Using Contacts | 1 | January 16th 07 10:01 PM |
Custom Form - Receiver replies and form is gone, message body is b | Kozlik | Outlook - Using Forms | 16 | July 14th 06 10:32 PM |
Emailing a contact vCard with custom form loses all custom info | Kim | Outlook - Using Contacts | 7 | April 27th 06 01:21 AM |
How to access custom field in Custom Form by C# | Minh Nguyen | Outlook - Using Forms | 3 | April 24th 06 04:32 PM |
Cannot programmatically open custom message in custom form | ms | Outlook - Using Forms | 1 | January 20th 06 04:01 PM |