A Microsoft Outlook email forum. Outlook Banter

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.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook - Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Custom Reply Form



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old March 12th 07, 04:43 PM posted to microsoft.public.outlook.program_forms
cjohnson300
external usenet poster
 
Posts: 9
Default Custom Reply Form

Is it possible to use Outlook Forms to have a custom reply form that reads
certain information from the message you are replying from (such as date
sent, subject, who it was to etc) and then puts them into the Subject line of
the new mail message? Some starter pointers would be very much appreciated

I have done loads of VBA in Excel and Access but Outlook is completely new
to me!

Thanks in advance

Chris
Ads
  #2  
Old March 12th 07, 07:23 PM posted to microsoft.public.outlook.program_forms
Hollis Paul
external usenet poster
 
Posts: 242
Default Custom Reply Form

In article ,
=?Utf-8?B?Y2pvaG5zb24zMDA=?= wrote:
Is it possible to use Outlook Forms to have a custom reply form that reads
certain information from the message you are replying from (such as date
sent, subject, who it was to etc) and then puts them into the Subject line of
the new mail message? Some starter pointers would be very much appreciated

I have done loads of VBA in Excel and Access but Outlook is completely new
to me!

At this point you really do not need to do VBA, but Outlook VBA works much the
same.

Now, to begin with, are you wanting to reply to a message that uses a custom
form. If so, then you can, in design mode, go to the Actions page and replace
the default reply action, which uses the standard form, with a call to a
subroutine that instantiates your custom reply form, and loads it with the field
data from your current form, and then sends it. The trick here is to
instantiate the form with a named object, so you can use that object name to
reference the new message. Then, you gather up the field data from the current
form, construct the subject line string, and set the subject line variable in
the new message: myReply.Subject = "mySubjectstring" . Then send it on its way
and close the current message.

But, make that change after you publish your custom reply message.

--
Hollis Paul
Mukilteo, WA USA


  #3  
Old March 12th 07, 10:29 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Custom Reply Form

Only if the form is for internal use ... in an organization that uses Exchange as its mail server ... and you can publish the form to the Organizational Forms libary.

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

"cjohnson300" wrote in message news
Is it possible to use Outlook Forms to have a custom reply form that reads
certain information from the message you are replying from (such as date
sent, subject, who it was to etc) and then puts them into the Subject line of
the new mail message? Some starter pointers would be very much appreciated

I have done loads of VBA in Excel and Access but Outlook is completely new
to me!

Thanks in advance

Chris

  #4  
Old March 13th 07, 09:51 AM posted to microsoft.public.outlook.program_forms
cjohnson300
external usenet poster
 
Posts: 9
Default Custom Reply Form

Thanks for the reply.

Do I need to change the Action on the Standard message form to call my
custom form instead of the Standard message form? Because that is what I
have done expecting to see my custom form but it does not display. And does
it make a difference if Outlook uses Word as its mail editor?

Chris
  #5  
Old March 13th 07, 09:55 AM posted to microsoft.public.outlook.program_forms
cjohnson300
external usenet poster
 
Posts: 9
Default Custom Reply Form

I have tried accessing this folder, but keep getting this message: "An error
occurred while going to this folder". The form is for internal use and
Exchange is our mail server. Is this a permissions issue or does the folder
need to be initialised in Exchange?

Many thanks

"Sue Mosher [MVP-Outlook]" wrote:

Only if the form is for internal use ... in an organization that uses Exchange as its mail server ... and you can publish the form to the Organizational Forms libary.

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

"cjohnson300" wrote in message news
Is it possible to use Outlook Forms to have a custom reply form that reads
certain information from the message you are replying from (such as date
sent, subject, who it was to etc) and then puts them into the Subject line of
the new mail message? Some starter pointers would be very much appreciated

I have done loads of VBA in Excel and Access but Outlook is completely new
to me!

Thanks in advance

Chris


  #6  
Old March 13th 07, 10:02 AM posted to microsoft.public.outlook.program_forms
cjohnson300
external usenet poster
 
Posts: 9
Default Custom Reply Form

I changed the setting that told Outlook to use Word as the email editor but
my custom form still does not show. When I change the setting for Reply on
the Standard message form, it does not save when I press Save. Is this the
correct form I should be changing?



"Hollis Paul" wrote:

In article ,
=?Utf-8?B?Y2pvaG5zb24zMDA=?= wrote:
Is it possible to use Outlook Forms to have a custom reply form that reads
certain information from the message you are replying from (such as date
sent, subject, who it was to etc) and then puts them into the Subject line of
the new mail message? Some starter pointers would be very much appreciated

I have done loads of VBA in Excel and Access but Outlook is completely new
to me!

At this point you really do not need to do VBA, but Outlook VBA works much the
same.

Now, to begin with, are you wanting to reply to a message that uses a custom
form. If so, then you can, in design mode, go to the Actions page and replace
the default reply action, which uses the standard form, with a call to a
subroutine that instantiates your custom reply form, and loads it with the field
data from your current form, and then sends it. The trick here is to
instantiate the form with a named object, so you can use that object name to
reference the new message. Then, you gather up the field data from the current
form, construct the subject line string, and set the subject line variable in
the new message: myReply.Subject = "mySubjectstring" . Then send it on its way
and close the current message.

But, make that change after you publish your custom reply message.

--
Hollis Paul
Mukilteo, WA USA



  #7  
Old March 13th 07, 10:09 AM posted to microsoft.public.outlook.program_forms
cjohnson300
external usenet poster
 
Posts: 9
Default Custom Reply Form

Sorry I meant -
Do I need to change the Action on the Standard Message form to call my
custom form or on the custom form itself? I have changed it on the standard
message form expecting to see my custom form but it does not display

"cjohnson300" wrote:

Thanks for the reply.

Do I need to change the Action on the Standard message form to call my
custom form instead of the Standard message form? Because that is what I
have done expecting to see my custom form but it does not display. And does
it make a difference if Outlook uses Word as its mail editor?

Chris

  #8  
Old March 13th 07, 02:12 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Custom Reply Form

The Exchange administrator needs to create and grant permissions for the Organizational Forms library folder.

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

"cjohnson300" wrote in message ...
I have tried accessing this folder, but keep getting this message: "An error
occurred while going to this folder". The form is for internal use and
Exchange is our mail server. Is this a permissions issue or does the folder
need to be initialised in Exchange?

Many thanks

"Sue Mosher [MVP-Outlook]" wrote:

Only if the form is for internal use ... in an organization that uses Exchange as its mail server ... and you can publish the form to the Organizational Forms libary.

"cjohnson300" wrote in message news
Is it possible to use Outlook Forms to have a custom reply form that reads
certain information from the message you are replying from (such as date
sent, subject, who it was to etc) and then puts them into the Subject line of
the new mail message? Some starter pointers would be very much appreciated

I have done loads of VBA in Excel and Access but Outlook is completely new
to me!

Thanks in advance

Chris


  #9  
Old March 13th 07, 02:14 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Custom Reply Form

Are you referring to the Reply action? You can't change the standard form. Any changes need to be made to a published custom form.

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

"cjohnson300" wrote in message ...
Sorry I meant -
Do I need to change the Action on the Standard Message form to call my
custom form or on the custom form itself? I have changed it on the standard
message form expecting to see my custom form but it does not display

"cjohnson300" wrote:

Thanks for the reply.

Do I need to change the Action on the Standard message form to call my
custom form instead of the Standard message form? Because that is what I
have done expecting to see my custom form but it does not display. And does
it make a difference if Outlook uses Word as its mail editor?

Chris

  #10  
Old March 13th 07, 03:14 PM posted to microsoft.public.outlook.program_forms
cjohnson300
external usenet poster
 
Posts: 9
Default Custom Reply Form

So in order to obtain what I'm trying to achieve, I need to create two forms.
One is a copy of teh standard message form, but when you press reply it
calls the other custom form that reads the previous form's information and
displays it?



"Sue Mosher [MVP-Outlook]" wrote:

Are you referring to the Reply action? You can't change the standard form. Any changes need to be made to a published custom form.

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

"cjohnson300" wrote in message ...
Sorry I meant -
Do I need to change the Action on the Standard Message form to call my
custom form or on the custom form itself? I have changed it on the standard
message form expecting to see my custom form but it does not display

"cjohnson300" wrote:

Thanks for the reply.

Do I need to change the Action on the Standard message form to call my
custom form instead of the Standard message form? Because that is what I
have done expecting to see my custom form but it does not display. And does
it make a difference if Outlook uses Word as its mail editor?

Chris


 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
SentOnBehalfOfName-Custom reply form with OnBehalfAddress in combo Nathan Outlook - Using Forms 1 July 19th 06 11:45 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
I send an Outlook custom form, but a std. form displays? Sue Mosher [MVP-Outlook] Outlook - Using Forms 0 January 20th 06 08:41 PM
Cannot programmatically open custom message in custom form ms Outlook - Using Forms 1 January 20th 06 04:01 PM


All times are GMT +1. The time now is 07:08 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-2025 Outlook Banter.
The comments are property of their posters.