![]() |
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
|
|||
|
|||
![]()
One function of a database I have set up on a network, is to set up
tasks/appointments for the users. Overall this works fine... however some users are not always logged on to the server, and therefore are not using Outlook on through the server which is where the appointment/task item has been set up. How can I set up an appointment or task on to their local computer? |
#2
|
|||
|
|||
![]()
You could email the task to them as an attachment.
-- 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 "TRM" wrote in message ... One function of a database I have set up on a network, is to set up tasks/appointments for the users. Overall this works fine... however some users are not always logged on to the server, and therefore are not using Outlook on through the server which is where the appointment/task item has been set up. How can I set up an appointment or task on to their local computer? |
#3
|
|||
|
|||
![]()
Thanks for the suggestion.
"Sue Mosher [MVP-Outlook]" wrote: You could email the task to them as an attachment. -- 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 "TRM" wrote in message ... One function of a database I have set up on a network, is to set up tasks/appointments for the users. Overall this works fine... however some users are not always logged on to the server, and therefore are not using Outlook on through the server which is where the appointment/task item has been set up. How can I set up an appointment or task on to their local computer? |
#4
|
|||
|
|||
![]()
I'm sorry... I tried this, and maybe I am misunderstanding. I have tried
creating the object (createitem(taskitem)) and attaching it (.attachments.add objtaskitem). I get an error message "the server threw an exception". So far, I haven't been able to find information on this error message and have no idea what the problem is (new to working with outlook, sorry!). I am testing this on my local pc, not on a network environment and am using Windows and Office XP. Here is the actual code snippet: Dim objTaskItem As Outlook.TaskItem Set objOutlook = Outlook.Application Set objMessage = objOutlook.CreateItem(olMailItem) Set objTaskItem = objOutlook.CreateItem(olTaskItem) objTaskItem.Subject = strReminder objTaskItem.DueDate = dteStartDate objTaskItem.Save 'email message settings With objMessage .To = strAddrList 'strBlindCopy .CC = strHRMgr .BCC = strBlindCopy .Attachments.Add objTaskItem .Subject = strSubject .Body = strMessage .Send End With Thanks again for your help! "Sue Mosher [MVP-Outlook]" wrote: You could email the task to them as an attachment. -- 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 "TRM" wrote in message ... One function of a database I have set up on a network, is to set up tasks/appointments for the users. Overall this works fine... however some users are not always logged on to the server, and therefore are not using Outlook on through the server which is where the appointment/task item has been set up. How can I set up an appointment or task on to their local computer? |
#5
|
|||
|
|||
![]()
That code snippet runs fine here on Outlook 2003 SP2. On your system, what statement raises the error? What's a typical value for dteStartDate?
-- 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 "TRM" wrote in message ... I'm sorry... I tried this, and maybe I am misunderstanding. I have tried creating the object (createitem(taskitem)) and attaching it (.attachments.add objtaskitem). I get an error message "the server threw an exception". So far, I haven't been able to find information on this error message and have no idea what the problem is (new to working with outlook, sorry!). I am testing this on my local pc, not on a network environment and am using Windows and Office XP. Here is the actual code snippet: Dim objTaskItem As Outlook.TaskItem Set objOutlook = Outlook.Application Set objMessage = objOutlook.CreateItem(olMailItem) Set objTaskItem = objOutlook.CreateItem(olTaskItem) objTaskItem.Subject = strReminder objTaskItem.DueDate = dteStartDate objTaskItem.Save 'email message settings With objMessage .To = strAddrList 'strBlindCopy .CC = strHRMgr .BCC = strBlindCopy .Attachments.Add objTaskItem .Subject = strSubject .Body = strMessage .Send End With "Sue Mosher [MVP-Outlook]" wrote: You could email the task to them as an attachment. "TRM" wrote in message ... One function of a database I have set up on a network, is to set up tasks/appointments for the users. Overall this works fine... however some users are not always logged on to the server, and therefore are not using Outlook on through the server which is where the appointment/task item has been set up. How can I set up an appointment or task on to their local computer? |
#6
|
|||
|
|||
![]()
I get the error on the 'attachments.add' statement. When I wasn't stepping
through, I just got the message "method of 'add' object of 'attachments' failed". The date is in the "mm/dd/yyyy" format - so maybe 6/01/2006. Thanks (again!). "Sue Mosher [MVP-Outlook]" wrote: That code snippet runs fine here on Outlook 2003 SP2. On your system, what statement raises the error? What's a typical value for dteStartDate? -- 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 "TRM" wrote in message ... I'm sorry... I tried this, and maybe I am misunderstanding. I have tried creating the object (createitem(taskitem)) and attaching it (.attachments.add objtaskitem). I get an error message "the server threw an exception". So far, I haven't been able to find information on this error message and have no idea what the problem is (new to working with outlook, sorry!). I am testing this on my local pc, not on a network environment and am using Windows and Office XP. Here is the actual code snippet: Dim objTaskItem As Outlook.TaskItem Set objOutlook = Outlook.Application Set objMessage = objOutlook.CreateItem(olMailItem) Set objTaskItem = objOutlook.CreateItem(olTaskItem) objTaskItem.Subject = strReminder objTaskItem.DueDate = dteStartDate objTaskItem.Save 'email message settings With objMessage .To = strAddrList 'strBlindCopy .CC = strHRMgr .BCC = strBlindCopy .Attachments.Add objTaskItem .Subject = strSubject .Body = strMessage .Send End With "Sue Mosher [MVP-Outlook]" wrote: You could email the task to them as an attachment. "TRM" wrote in message ... One function of a database I have set up on a network, is to set up tasks/appointments for the users. Overall this works fine... however some users are not always logged on to the server, and therefore are not using Outlook on through the server which is where the appointment/task item has been set up. How can I set up an appointment or task on to their local computer? |
#7
|
|||
|
|||
![]()
If you're attaching an Outlook item, usually you need to specify that in your Attachments.Add expression:
.Attachments.Add objTaskItem, olEmbeddeditem -- 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 "TRM" wrote in message news ![]() I get the error on the 'attachments.add' statement. When I wasn't stepping through, I just got the message "method of 'add' object of 'attachments' failed". The date is in the "mm/dd/yyyy" format - so maybe 6/01/2006. Thanks (again!). "Sue Mosher [MVP-Outlook]" wrote: That code snippet runs fine here on Outlook 2003 SP2. On your system, what statement raises the error? What's a typical value for dteStartDate? "TRM" wrote in message ... I'm sorry... I tried this, and maybe I am misunderstanding. I have tried creating the object (createitem(taskitem)) and attaching it (.attachments.add objtaskitem). I get an error message "the server threw an exception". So far, I haven't been able to find information on this error message and have no idea what the problem is (new to working with outlook, sorry!). I am testing this on my local pc, not on a network environment and am using Windows and Office XP. Here is the actual code snippet: Dim objTaskItem As Outlook.TaskItem Set objOutlook = Outlook.Application Set objMessage = objOutlook.CreateItem(olMailItem) Set objTaskItem = objOutlook.CreateItem(olTaskItem) objTaskItem.Subject = strReminder objTaskItem.DueDate = dteStartDate objTaskItem.Save 'email message settings With objMessage .To = strAddrList 'strBlindCopy .CC = strHRMgr .BCC = strBlindCopy .Attachments.Add objTaskItem .Subject = strSubject .Body = strMessage .Send End With "Sue Mosher [MVP-Outlook]" wrote: You could email the task to them as an attachment. "TRM" wrote in message ... One function of a database I have set up on a network, is to set up tasks/appointments for the users. Overall this works fine... however some users are not always logged on to the server, and therefore are not using Outlook on through the server which is where the appointment/task item has been set up. How can I set up an appointment or task on to their local computer? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
I create a new Task, but it won't let me set a reminder. | Tasker | Outlook - Calandaring | 1 | March 23rd 06 06:10 PM |
transfer microsoft outlook calender 2003 from computer to computer | Roland Wyatt | Outlook - Calandaring | 1 | March 4th 06 09:36 AM |
How do I set an audio alarm for an Outlook task? | Vicky Campagna | Outlook - Calandaring | 1 | February 26th 06 05:21 PM |
How do I set up a password in a computer? | Mon | Outlook - General Queries | 1 | February 20th 06 05:07 PM |
Set which local email account can send mail to contacts in address book. (associating an email address with a contact) | Scott Streit | Outlook - General Queries | 3 | January 27th 06 03:57 PM |