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

Appointment form



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old January 4th 07, 03:42 PM posted to microsoft.public.outlook.program_forms
roblowein
external usenet poster
 
Posts: 4
Default Appointment form

Hi,

I have created a custom form based on the appointment form. I have also
created serveral new fields one of which contains a random number. I
would like for this value to appear in the subject field too so that is
visible from the main calendar page.

So the question is how can I populate the subect field from custom
field I have created

Or

Is there way of showing the custom fields that I have created on the
main calendar page so that the appointment does not have to be opened
to see all the data ?

Regards

Rob

  #2  
Old January 4th 07, 04:04 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Appointment form

Is there way of showing the custom fields that I have created on the
main calendar page so that the appointment does not have to be opened
to see all the data ?


No.

how can I populate the subect field from custom
field I have created


Need more specifics: When do you want to see it populated? What do you want it to look like? What happens to the subject text the user types in? What field holds the information you want to add?

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

"roblowein" wrote in message ups.com...

I have created a custom form based on the appointment form. I have also
created serveral new fields one of which contains a random number. I
would like for this value to appear in the subject field too so that is
visible from the main calendar page.

So the question is how can I populate the subect field from custom
field I have created

Or

Is there way of showing the custom fields that I have created on the
main calendar page so that the appointment does not have to be opened
to see all the data ?


  #3  
Old January 4th 07, 07:33 PM posted to microsoft.public.outlook.program_forms
roblowein
external usenet poster
 
Posts: 4
Default Appointment form

Hi Sue ... thanks for the quick reply,

I would like to see the subject field populated with the random number
when the form is created for the 1st time
If possible I would like to have it as the 1st entry in the box so that
any other data (name and address and job description) will be added
after the random number (the random number acts as job refernce and
invoice number.)

When I am more upto speed with VBA and VBS and OUtlook Objects (my
background is HP-UX, Solaris, Linux) I plan to make it a sequential
number prefixed by a fixed ID (eg staff number) and with the other
custom fields on page2 export the data to excel to send out an invoice
etc

Regards

Rob Lowein

On 4 Jan, 16:04, "Sue Mosher [MVP-Outlook]"
wrote:
Is there way of showing the custom fields that I have created on the
main calendar page so that the appointment does not have to be opened
to see all the data ?No.


how can I populate the subect field from custom
field I have createdNeed more specifics: When do you want to see it populated? What do you want it to look like? What happens to the subject text the user types in? What field holds the information you want to add?


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



"roblowein" wrote in oglegroups.com...

I have created a custom form based on the appointment form. I have also
created serveral new fields one of which contains a random number. I
would like for this value to appear in the subject field too so that is
visible from the main calendar page.


So the question is how can I populate the subect field from custom
field I have created


Or


Is there way of showing the custom fields that I have created on the
main calendar page so that the appointment does not have to be opened
to see all the data ?- Hide quoted text -- Show quoted text -


  #4  
Old January 4th 07, 08:09 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Appointment form

If all the data to build the subject is coming from other fields on the item, then a formula behind the Subject field would be a good solution.

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

"roblowein" wrote in message ups.com...
Hi Sue ... thanks for the quick reply,

I would like to see the subject field populated with the random number
when the form is created for the 1st time


Then you'll put code in the Item_Open event or use a formula behind the Subject field.

If possible I would like to have it as the 1st entry in the box so that
any other data (name and address and job description) will be added
after the random number (the random number acts as job refernce and
invoice number.)

When I am more upto speed with VBA and VBS and OUtlook Objects (my
background is HP-UX, Solaris, Linux) I plan to make it a sequential
number prefixed by a fixed ID (eg staff number) and with the other
custom fields on page2 export the data to excel to send out an invoice
etc

Regards

Rob Lowein

On 4 Jan, 16:04, "Sue Mosher [MVP-Outlook]"
wrote:
Is there way of showing the custom fields that I have created on the
main calendar page so that the appointment does not have to be opened
to see all the data ?No.


how can I populate the subect field from custom
field I have createdNeed more specifics: When do you want to see it populated? What do you want it to look like? What happens to the subject text the user types in? What field holds the information you want to add?



"roblowein" wrote in oglegroups.com...

I have created a custom form based on the appointment form. I have also
created serveral new fields one of which contains a random number. I
would like for this value to appear in the subject field too so that is
visible from the main calendar page.


So the question is how can I populate the subect field from custom
field I have created


Or


Is there way of showing the custom fields that I have created on the
main calendar page so that the appointment does not have to be opened
to see all the data ?- Hide quoted text -- Show quoted text -


  #5  
Old January 5th 07, 03:18 PM posted to microsoft.public.outlook.program_forms
roblowein
external usenet poster
 
Posts: 4
Default Appointment form

Again Sue .. thanks for the reply...


I am right in thinking that the only way to add a formula to the
subject field is via VBS / VBA ... rather that directly from the
subject field definition (ie like a custom field where you can add
values and formulas etc.


Regards

rob
Sue Mosher [MVP-Outlook] wrote:
If all the data to build the subject is coming from other fields on the item, then a formula behind the Subject field would be a good solution.

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

"roblowein" wrote in message ups.com...
Hi Sue ... thanks for the quick reply,

I would like to see the subject field populated with the random number
when the form is created for the 1st time


Then you'll put code in the Item_Open event or use a formula behind the Subject field.

If possible I would like to have it as the 1st entry in the box so that
any other data (name and address and job description) will be added
after the random number (the random number acts as job refernce and
invoice number.)

When I am more upto speed with VBA and VBS and OUtlook Objects (my
background is HP-UX, Solaris, Linux) I plan to make it a sequential
number prefixed by a fixed ID (eg staff number) and with the other
custom fields on page2 export the data to excel to send out an invoice
etc

Regards

Rob Lowein

On 4 Jan, 16:04, "Sue Mosher [MVP-Outlook]"
wrote:
Is there way of showing the custom fields that I have created on the
main calendar page so that the appointment does not have to be opened
to see all the data ?No.

how can I populate the subect field from custom
field I have createdNeed more specifics: When do you want to see it populated? What do you want it to look like? What happens to the subject text the user types in? What field holds the information you want to add?


"roblowein" wrote in oglegroups.com...

I have created a custom form based on the appointment form. I have also
created serveral new fields one of which contains a random number. I
would like for this value to appear in the subject field too so that is
visible from the main calendar page.

So the question is how can I populate the subect field from custom
field I have created

Or

Is there way of showing the custom fields that I have created on the
main calendar page so that the appointment does not have to be opened
to see all the data ?- Hide quoted text -- Show quoted text -



  #6  
Old January 5th 07, 04:12 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Appointment form

No, you're wrong about that. There's no reason you can't put the Subject field on a hidden custom page and build a formula for it through that text box's Properties dialog.

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

"roblowein" wrote in message ups.com...
Again Sue .. thanks for the reply...


I am right in thinking that the only way to add a formula to the
subject field is via VBS / VBA ... rather that directly from the
subject field definition (ie like a custom field where you can add
values and formulas etc.

Sue Mosher [MVP-Outlook] wrote:
If all the data to build the subject is coming from other fields on the item, then a formula behind the Subject field would be a good solution.


"roblowein" wrote in message ups.com...
Hi Sue ... thanks for the quick reply,

I would like to see the subject field populated with the random number
when the form is created for the 1st time


Then you'll put code in the Item_Open event or use a formula behind the Subject field.

If possible I would like to have it as the 1st entry in the box so that
any other data (name and address and job description) will be added
after the random number (the random number acts as job refernce and
invoice number.)

When I am more upto speed with VBA and VBS and OUtlook Objects (my
background is HP-UX, Solaris, Linux) I plan to make it a sequential
number prefixed by a fixed ID (eg staff number) and with the other
custom fields on page2 export the data to excel to send out an invoice
etc

Regards

Rob Lowein

On 4 Jan, 16:04, "Sue Mosher [MVP-Outlook]"
wrote:
Is there way of showing the custom fields that I have created on the
main calendar page so that the appointment does not have to be opened
to see all the data ?No.

how can I populate the subect field from custom
field I have createdNeed more specifics: When do you want to see it populated? What do you want it to look like? What happens to the subject text the user types in? What field holds the information you want to add?


"roblowein" wrote in oglegroups.com...

I have created a custom form based on the appointment form. I have also
created serveral new fields one of which contains a random number. I
would like for this value to appear in the subject field too so that is
visible from the main calendar page.

So the question is how can I populate the subect field from custom
field I have created

Or

Is there way of showing the custom fields that I have created on the
main calendar page so that the appointment does not have to be opened
to see all the data ?- Hide quoted text -- Show quoted text -


 




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
Customized Appointment form keeps reverting to default form John E. Outlook - Using Forms 3 December 30th 06 02:57 PM
Customize Appointment Form Wilson Cheung Outlook - Using Forms 1 November 22nd 06 02:32 AM
Customizing appointment form Sherry8 Outlook - Calandaring 5 October 12th 06 03:56 AM
Corrupt Appointment form John Smith Outlook - General Queries 1 August 2nd 06 05:55 AM
modify outlook form-appointment form blanc Outlook and VBA 1 March 24th 06 03:20 PM


All times are GMT +1. The time now is 05:00 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.