![]() |
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 use Tasks to keep a record of my dealings with clients. I have been trying
to design a Task form which allows me to inter alia keep a record of each discussion. On Page 2 I've tried to set up a number of "Contact Date" fields. I've set up each field as a Date field but I don't get a drop down pointer which allows me to enter a date from the calendar. I have to enter the date by typing it in. Is there a way of setting up each field to bring up the calendar? |
#2
|
|||
|
|||
![]()
In versions before Outlook 2007, Outlook has no date picker control available to programmers (which, by the way, is one reason why the first page of the appointment, journal, and task forms is not editable). See http://www.outlookcode.com/article.aspx?id=26 for controls you can add.
Outlook 2007 includes its own Outlook-aware date and time picker controls for use with the new form regions feature, but not with traditional custom forms. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Leon" wrote in message news ![]() I use Tasks to keep a record of my dealings with clients. I have been trying to design a Task form which allows me to inter alia keep a record of each discussion. On Page 2 I've tried to set up a number of "Contact Date" fields. I've set up each field as a Date field but I don't get a drop down pointer which allows me to enter a date from the calendar. I have to enter the date by typing it in. Is there a way of setting up each field to bring up the calendar? |
#3
|
|||
|
|||
![]()
Thank you for the reply Sue, I omitted to mention that I am using Outlook
2007 Professional. So if there is a way that I may design a form which I can use to keep tabs on my clients this would be most helpful. Leon "Sue Mosher [MVP-Outlook]" wrote: In versions before Outlook 2007, Outlook has no date picker control available to programmers (which, by the way, is one reason why the first page of the appointment, journal, and task forms is not editable). See http://www.outlookcode.com/article.aspx?id=26 for controls you can add. Outlook 2007 includes its own Outlook-aware date and time picker controls for use with the new form regions feature, but not with traditional custom forms. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Leon" wrote in message news ![]() I use Tasks to keep a record of my dealings with clients. I have been trying to design a Task form which allows me to inter alia keep a record of each discussion. On Page 2 I've tried to set up a number of "Contact Date" fields. I've set up each field as a Date field but I don't get a drop down pointer which allows me to enter a date from the calendar. I have to enter the date by typing it in. Is there a way of setting up each field to bring up the calendar? |
#4
|
|||
|
|||
![]()
If your heart is set on using a date picker, you might want to explore the new forms region feature. There are some detailed articles in the developer Help, and we can help you with the specifics of setting up the region manifest once you get to that point.
Or use the legacy custom forms architecture and just type it in, using OUtlook's date shortcuts. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Leon" wrote in message ... Thank you for the reply Sue, I omitted to mention that I am using Outlook 2007 Professional. So if there is a way that I may design a form which I can use to keep tabs on my clients this would be most helpful. Leon "Sue Mosher [MVP-Outlook]" wrote: In versions before Outlook 2007, Outlook has no date picker control available to programmers (which, by the way, is one reason why the first page of the appointment, journal, and task forms is not editable). See http://www.outlookcode.com/article.aspx?id=26 for controls you can add. Outlook 2007 includes its own Outlook-aware date and time picker controls for use with the new form regions feature, but not with traditional custom forms. "Leon" wrote in message news ![]() I use Tasks to keep a record of my dealings with clients. I have been trying to design a Task form which allows me to inter alia keep a record of each discussion. On Page 2 I've tried to set up a number of "Contact Date" fields. I've set up each field as a Date field but I don't get a drop down pointer which allows me to enter a date from the calendar. I have to enter the date by typing it in. Is there a way of setting up each field to bring up the calendar? |
#5
|
|||
|
|||
![]()
Can I design forms in the form regions feature in the same way as I was able
to design forms in the older Outlook versions, ie by dragging fields onto a page, and if so how do I do this? "Sue Mosher [MVP-Outlook]" wrote: If your heart is set on using a date picker, you might want to explore the new forms region feature. There are some detailed articles in the developer Help, and we can help you with the specifics of setting up the region manifest once you get to that point. Or use the legacy custom forms architecture and just type it in, using OUtlook's date shortcuts. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Leon" wrote in message ... Thank you for the reply Sue, I omitted to mention that I am using Outlook 2007 Professional. So if there is a way that I may design a form which I can use to keep tabs on my clients this would be most helpful. Leon "Sue Mosher [MVP-Outlook]" wrote: In versions before Outlook 2007, Outlook has no date picker control available to programmers (which, by the way, is one reason why the first page of the appointment, journal, and task forms is not editable). See http://www.outlookcode.com/article.aspx?id=26 for controls you can add. Outlook 2007 includes its own Outlook-aware date and time picker controls for use with the new form regions feature, but not with traditional custom forms. "Leon" wrote in message news ![]() to design a Task form which allows me to inter alia keep a record of each discussion. On Page 2 I've tried to set up a number of "Contact Date" fields. I've set up each field as a Date field but I don't get a drop down pointer which allows me to enter a date from the calendar. I have to enter the date by typing it in. Is there a way of setting up each field to bring up the calendar? |
#6
|
|||
|
|||
![]()
Start a form region design session by putting a form into design mode, then on the Developer tab of the ribbon, choose Form Region | New Form Region. After that, it's drag and drop just like in a regular form. You will want to read the articles in Outlook developer Help on registering and deploying a form region; the process is very different from that for legacy custom forms.
-- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Leon" wrote in message ... Can I design forms in the form regions feature in the same way as I was able to design forms in the older Outlook versions, ie by dragging fields onto a page, and if so how do I do this? "Sue Mosher [MVP-Outlook]" wrote: If your heart is set on using a date picker, you might want to explore the new forms region feature. There are some detailed articles in the developer Help, and we can help you with the specifics of setting up the region manifest once you get to that point. Or use the legacy custom forms architecture and just type it in, using OUtlook's date shortcuts. "Leon" wrote in message ... Thank you for the reply Sue, I omitted to mention that I am using Outlook 2007 Professional. So if there is a way that I may design a form which I can use to keep tabs on my clients this would be most helpful. Leon "Sue Mosher [MVP-Outlook]" wrote: In versions before Outlook 2007, Outlook has no date picker control available to programmers (which, by the way, is one reason why the first page of the appointment, journal, and task forms is not editable). See http://www.outlookcode.com/article.aspx?id=26 for controls you can add. Outlook 2007 includes its own Outlook-aware date and time picker controls for use with the new form regions feature, but not with traditional custom forms. "Leon" wrote in message news ![]() to design a Task form which allows me to inter alia keep a record of each discussion. On Page 2 I've tried to set up a number of "Contact Date" fields. I've set up each field as a Date field but I don't get a drop down pointer which allows me to enter a date from the calendar. I have to enter the date by typing it in. Is there a way of setting up each field to bring up the calendar? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
is it possible to link tasks in the tasks with the calendar? | tasky mary | Outlook - Calandaring | 3 | March 13th 07 12:06 AM |
Printing calendar and active tasks - do not want all tasks | rrupp | Outlook - Calandaring | 1 | August 18th 06 09:36 AM |
Tasks - User Defined Columns to Pocket PC Tasks??? | Lovebaby | Outlook - General Queries | 1 | July 23rd 06 09:14 PM |
Tasks | monica | Outlook - Installation | 0 | June 22nd 06 07:04 PM |
Tasks | [email protected] | Outlook - General Queries | 7 | June 5th 06 11:28 AM |