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

Tags: , , , , ,

Outlook 2003 - Custom Templates for Public Folders





 
 
Thread Tools Display Modes
  #1  
Old May 20th 07, 08:05 PM posted to microsoft.public.outlook.program_forms
Scott07
external usenet poster
 
Posts: 28
Default Outlook 2003 - Custom Templates for Public Folders

Hi,

Recently, I have discovered and made use of the ability to create
custom templates for entries into public folders. At our
organization, we use them solely as calendars to illustrate to staff
that, for example, John has a meeting at 10:00a, Sally is out of the
office, etc. However, I would like to have the data entered into my
custom forms displayed on the calendar. For example, by default, when
data is entered into the "Subject" of the public folder, the
information is displayed on the calendar for viewing. However, none
of my custom fields will show this data as the "Subject" field does.
Is there any way to do this with custom templates?


Thank you.



Ads
  #2  
Old May 20th 07, 10:08 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Outlook 2003 - Custom Templates for Public Folders

You could use code behind the form to append the data from your custom fields to the Subject or Location property. Those are the only text properties that show data in day/week/month views.

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

"Scott07" wrote in message ...
Hi,

Recently, I have discovered and made use of the ability to create
custom templates for entries into public folders. At our
organization, we use them solely as calendars to illustrate to staff
that, for example, John has a meeting at 10:00a, Sally is out of the
office, etc. However, I would like to have the data entered into my
custom forms displayed on the calendar. For example, by default, when
data is entered into the "Subject" of the public folder, the
information is displayed on the calendar for viewing. However, none
of my custom fields will show this data as the "Subject" field does.
Is there any way to do this with custom templates?


Thank you.



  #3  
Old May 21st 07, 03:37 AM posted to microsoft.public.outlook.program_forms
Scott07
external usenet poster
 
Posts: 28
Default Outlook 2003 - Custom Templates for Public Folders

Thank you for your help. I understand what you mean, but am unsure of the
method of doing so. Can you please explain?

Thanks,
Scott



"Sue Mosher [MVP-Outlook]" wrote:

You could use code behind the form to append the data from your custom fields to the Subject or Location property. Those are the only text properties that show data in day/week/month views.

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

"Scott07" wrote in message ...
Hi,

Recently, I have discovered and made use of the ability to create
custom templates for entries into public folders. At our
organization, we use them solely as calendars to illustrate to staff
that, for example, John has a meeting at 10:00a, Sally is out of the
office, etc. However, I would like to have the data entered into my
custom forms displayed on the calendar. For example, by default, when
data is entered into the "Subject" of the public folder, the
information is displayed on the calendar for viewing. However, none
of my custom fields will show this data as the "Subject" field does.
Is there any way to do this with custom templates?


Thank you.




  #4  
Old May 21st 07, 01:23 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Outlook 2003 - Custom Templates for Public Folders

At its simplest, it would be something like this:

Function Item_Write()
Item.Subject = Item.Subject & " - " & Item.UserProperties("Your_Property")
End Function

although realistically, you'd probably want to do a little more text parsing to handle the case where an item is being saved multiple times.
--
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

"Scott07" wrote in message ...
Thank you for your help. I understand what you mean, but am unsure of the
method of doing so. Can you please explain?

"Sue Mosher [MVP-Outlook]" wrote:

You could use code behind the form to append the data from your custom fields to the Subject or Location property. Those are the only text properties that show data in day/week/month views.



"Scott07" wrote in message ...
Hi,

Recently, I have discovered and made use of the ability to create
custom templates for entries into public folders. At our
organization, we use them solely as calendars to illustrate to staff
that, for example, John has a meeting at 10:00a, Sally is out of the
office, etc. However, I would like to have the data entered into my
custom forms displayed on the calendar. For example, by default, when
data is entered into the "Subject" of the public folder, the
information is displayed on the calendar for viewing. However, none
of my custom fields will show this data as the "Subject" field does.
Is there any way to do this with custom templates?


Thank you.




  #5  
Old May 21st 07, 05:30 PM posted to microsoft.public.outlook.program_forms
Scott07
external usenet poster
 
Posts: 28
Default Outlook 2003 - Custom Templates for Public Folders

I hope I don't sound too oblivious, but where do I place the code or access
the location to do so?

Thanks again.



"Sue Mosher [MVP-Outlook]" wrote:

At its simplest, it would be something like this:

Function Item_Write()
Item.Subject = Item.Subject & " - " & Item.UserProperties("Your_Property")
End Function

although realistically, you'd probably want to do a little more text parsing to handle the case where an item is being saved multiple times.
--
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

"Scott07" wrote in message ...
Thank you for your help. I understand what you mean, but am unsure of the
method of doing so. Can you please explain?

"Sue Mosher [MVP-Outlook]" wrote:

You could use code behind the form to append the data from your custom fields to the Subject or Location property. Those are the only text properties that show data in day/week/month views.



"Scott07" wrote in message ...
Hi,

Recently, I have discovered and made use of the ability to create
custom templates for entries into public folders. At our
organization, we use them solely as calendars to illustrate to staff
that, for example, John has a meeting at 10:00a, Sally is out of the
office, etc. However, I would like to have the data entered into my
custom forms displayed on the calendar. For example, by default, when
data is entered into the "Subject" of the public folder, the
information is displayed on the calendar for viewing. However, none
of my custom fields will show this data as the "Subject" field does.
Is there any way to do this with custom templates?


Thank you.





  #6  
Old May 21st 07, 07:49 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Outlook 2003 - Custom Templates for Public Folders

Click the View Code button on the toolbar.

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

"Scott07" wrote in message ...
I hope I don't sound too oblivious, but where do I place the code or access
the location to do so?

Thanks again.



"Sue Mosher [MVP-Outlook]" wrote:

At its simplest, it would be something like this:

Function Item_Write()
Item.Subject = Item.Subject & " - " & Item.UserProperties("Your_Property")
End Function

although realistically, you'd probably want to do a little more text parsing to handle the case where an item is being saved multiple times.



"Scott07" wrote in message ...
Thank you for your help. I understand what you mean, but am unsure of the
method of doing so. Can you please explain?

"Sue Mosher [MVP-Outlook]" wrote:

You could use code behind the form to append the data from your custom fields to the Subject or Location property. Those are the only text properties that show data in day/week/month views.



"Scott07" wrote in message ...
Hi,

Recently, I have discovered and made use of the ability to create
custom templates for entries into public folders. At our
organization, we use them solely as calendars to illustrate to staff
that, for example, John has a meeting at 10:00a, Sally is out of the
office, etc. However, I would like to have the data entered into my
custom forms displayed on the calendar. For example, by default, when
data is entered into the "Subject" of the public folder, the
information is displayed on the calendar for viewing. However, none
of my custom fields will show this data as the "Subject" field does.
Is there any way to do this with custom templates?


  #7  
Old May 22nd 07, 04:23 PM posted to microsoft.public.outlook.program_forms
Scott07
external usenet poster
 
Posts: 28
Default Outlook 2003 - Custom Templates for Public Folders

Thanks. I got there, but I must not be doing something correctly.
Initially, I was thinking that I could create multiple "Subject" fields to
display the data and rename them appropriately, but it seems that they're
tied together. For example, if I enter test into one of the "Subject"
fields, all of them display "Test." Any other ideas to have multiple fields
display on the public folder?

Thank you.

"Sue Mosher [MVP-Outlook]" wrote:

Click the View Code button on the toolbar.

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

"Scott07" wrote in message ...
I hope I don't sound too oblivious, but where do I place the code or access
the location to do so?

Thanks again.



"Sue Mosher [MVP-Outlook]" wrote:

At its simplest, it would be something like this:

Function Item_Write()
Item.Subject = Item.Subject & " - " & Item.UserProperties("Your_Property")
End Function

although realistically, you'd probably want to do a little more text parsing to handle the case where an item is being saved multiple times.



"Scott07" wrote in message ...
Thank you for your help. I understand what you mean, but am unsure of the
method of doing so. Can you please explain?

"Sue Mosher [MVP-Outlook]" wrote:

You could use code behind the form to append the data from your custom fields to the Subject or Location property. Those are the only text properties that show data in day/week/month views.


"Scott07" wrote in message ...
Hi,

Recently, I have discovered and made use of the ability to create
custom templates for entries into public folders. At our
organization, we use them solely as calendars to illustrate to staff
that, for example, John has a meeting at 10:00a, Sally is out of the
office, etc. However, I would like to have the data entered into my
custom forms displayed on the calendar. For example, by default, when
data is entered into the "Subject" of the public folder, the
information is displayed on the calendar for viewing. However, none
of my custom fields will show this data as the "Subject" field does.
Is there any way to do this with custom templates?



  #8  
Old May 23rd 07, 05:39 PM posted to microsoft.public.outlook.program_forms
Scott07
external usenet poster
 
Posts: 28
Default Outlook 2003 - Custom Templates for Public Folders

Hi, Sue,

So I've done a bit of research to better understand what you're talking
about below, but am still slightly confused. As an example, I have 3 text
boxes that I want displayed on the calendar. Each of the fields I've created
in my form are text boxes and they're named textbox1, textbox2, and textbox3.
How would I go about implementing your code below to satisfy my needs?

Thanks again.

-Scott

"Sue Mosher [MVP-Outlook]" wrote:

At its simplest, it would be something like this:

Function Item_Write()
Item.Subject = Item.Subject & " - " & Item.UserProperties("Your_Property")
End Function

although realistically, you'd probably want to do a little more text parsing to handle the case where an item is being saved multiple times.
--
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

"Scott07" wrote in message ...
Thank you for your help. I understand what you mean, but am unsure of the
method of doing so. Can you please explain?

"Sue Mosher [MVP-Outlook]" wrote:

You could use code behind the form to append the data from your custom fields to the Subject or Location property. Those are the only text properties that show data in day/week/month views.



"Scott07" wrote in message ...
Hi,

Recently, I have discovered and made use of the ability to create
custom templates for entries into public folders. At our
organization, we use them solely as calendars to illustrate to staff
that, for example, John has a meeting at 10:00a, Sally is out of the
office, etc. However, I would like to have the data entered into my
custom forms displayed on the calendar. For example, by default, when
data is entered into the "Subject" of the public folder, the
information is displayed on the calendar for viewing. However, none
of my custom fields will show this data as the "Subject" field does.
Is there any way to do this with custom templates?


Thank you.





  #9  
Old May 23rd 07, 06:34 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Outlook 2003 - Custom Templates for Public Folders

The first step is to specify whether these are unbound text boxes or whether they are bound to Outlook custom properties. That will determine the syntax you need to use, as discussed at http://www.outlookcode.com/article.aspx?ID=38

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

"Scott07" wrote in message ...
Hi, Sue,

So I've done a bit of research to better understand what you're talking
about below, but am still slightly confused. As an example, I have 3 text
boxes that I want displayed on the calendar. Each of the fields I've created
in my form are text boxes and they're named textbox1, textbox2, and textbox3.
How would I go about implementing your code below to satisfy my needs?

Thanks again.

-Scott

"Sue Mosher [MVP-Outlook]" wrote:

At its simplest, it would be something like this:

Function Item_Write()
Item.Subject = Item.Subject & " - " & Item.UserProperties("Your_Property")
End Function

although realistically, you'd probably want to do a little more text parsing to handle the case where an item is being saved multiple times.
--
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

"Scott07" wrote in message ...
Thank you for your help. I understand what you mean, but am unsure of the
method of doing so. Can you please explain?

"Sue Mosher [MVP-Outlook]" wrote:

You could use code behind the form to append the data from your custom fields to the Subject or Location property. Those are the only text properties that show data in day/week/month views.



"Scott07" wrote in message ...
Hi,

Recently, I have discovered and made use of the ability to create
custom templates for entries into public folders. At our
organization, we use them solely as calendars to illustrate to staff
that, for example, John has a meeting at 10:00a, Sally is out of the
office, etc. However, I would like to have the data entered into my
custom forms displayed on the calendar. For example, by default, when
data is entered into the "Subject" of the public folder, the
information is displayed on the calendar for viewing. However, none
of my custom fields will show this data as the "Subject" field does.
Is there any way to do this with custom templates?


Thank you.





  #10  
Old May 24th 07, 03:57 AM posted to microsoft.public.outlook.program_forms
Scott07
external usenet poster
 
Posts: 28
Default Outlook 2003 - Custom Templates for Public Folders

I would assume that these are unbound text boxes, as they are not dependent
upon any Outlook properties. Although would their origin as "Subject" fields
make them bound text boxes?

Based upon your determination of whether they are bound or unbound, should
my code look like this for 3 text boxes?

Function Item_Write()
Item.Subject = Item.Subject & " - " & Item.UserProperties("textbox1")
Item.Subject = Item.Subject & " - " & Item.UserProperties("textbox2")
Item.Subject = Item.Subject & " - " & Item.UserProperties("textbox3")
End Function

Thanks so much for your help, once again!


"Sue Mosher [MVP-Outlook]" wrote:

The first step is to specify whether these are unbound text boxes or whether they are bound to Outlook custom properties. That will determine the syntax you need to use, as discussed at http://www.outlookcode.com/article.aspx?ID=38

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

"Scott07" wrote in message ...
Hi, Sue,

So I've done a bit of research to better understand what you're talking
about below, but am still slightly confused. As an example, I have 3 text
boxes that I want displayed on the calendar. Each of the fields I've created
in my form are text boxes and they're named textbox1, textbox2, and textbox3.
How would I go about implementing your code below to satisfy my needs?

Thanks again.

-Scott

"Sue Mosher [MVP-Outlook]" wrote:

At its simplest, it would be something like this:

Function Item_Write()
Item.Subject = Item.Subject & " - " & Item.UserProperties("Your_Property")
End Function

although realistically, you'd probably want to do a little more text parsing to handle the case where an item is being saved multiple times.
--
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

"Scott07" wrote in message ...
Thank you for your help. I understand what you mean, but am unsure of the
method of doing so. Can you please explain?

"Sue Mosher [MVP-Outlook]" wrote:

You could use code behind the form to append the data from your custom fields to the Subject or Location property. Those are the only text properties that show data in day/week/month views.


"Scott07" wrote in message ...
Hi,

Recently, I have discovered and made use of the ability to create
custom templates for entries into public folders. At our
organization, we use them solely as calendars to illustrate to staff
that, for example, John has a meeting at 10:00a, Sally is out of the
office, etc. However, I would like to have the data entered into my
custom forms displayed on the calendar. For example, by default, when
data is entered into the "Subject" of the public folder, the
information is displayed on the calendar for viewing. However, none
of my custom fields will show this data as the "Subject" field does.
Is there any way to do this with custom templates?


Thank you.






 




Thread Tools
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
Outlook 2003 - Custom Templates for Public Folders Foodbank Outlook - General Queries 1 May 17th 07 03:19 PM
custom forms without public folders and client installation berndsoft@googlemail.com Outlook - Using Forms 1 April 17th 07 05:34 AM
exchange server 2003/ outlook 2002 and 2003 and public folders t north Outlook - Using Contacts 0 March 6th 07 08:18 PM
Keyboard shortcut for custom view in public folders JD2 Outlook and VBA 0 September 7th 06 09:38 AM
Attaching Custom Forms to Existing Contacts in Public Folders jyu1018@gmail.com Outlook - Using Forms 2 August 23rd 06 02:41 AM


All times are GMT +1. The time now is 03:24 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2008 Outlook Banter, part of the NewsgroupBanter project.
The comments are property of their posters.
Mortgage Calculator - Credit Counseling - Business Credit Card - Loan - Myspace Proxy