1. In a report how to stop blank fields in address details from appea - Microsoft Office Outlook
2. Create Assigned Task Without 'Send me a status report when this task is complete' enabled
Hi,
I am using the Outlook Object model in c# to create and assign a task to
a user and send it (not worried about the security Message boxes) all
works OK. E.g.
Private void Do_it (string username, string subject)
{
Outlook.TaskItem objTask;
objTask =
(Outlook.TaskItem)objOL.CreateItem(Outlook.OlItemType.olTaskItem);
objTask.StartDate = DateTime.Now.AddHours (1);
objTask.DueDate = DateTime.Now.AddHours (4);
objTask.Subject = subject;
objTask.Assign();
objTask.Recipients.Add (username);
objTask.Save ();
objTask.Send ();
}
The options
'Keep an updated copy of this task on my task list' and
'Send me a status report when this task is complete'
Both are enabled by default, but I want to turn off 'Send me a status
report when this task is complete' before
I send the task, just like Outlook does from the default new task form.
Would be very nice to remove an unnecessary email message.
There does not appear to be a specific option for this, from the help it
looks like it is calculated from the BCC list but I checked there are no
BCC recipients before I send it.
Any ideas?
Thanks
4. Online Survey - Will help you to automate the online data collection and ensures complete accuracy
5. I am having trouble creating a new field in my contacts section
6. Problem: "Completed" field does not show completed date.
I installed Outlook 2007, I keep all my tasks completed in folder "Completed" . The completed field does not show completed date. The only field that will rererence the date completed is "Received". Why? How can I fix? How can I edit the field? I know how to open Custom Field, but what would I do specifically. Is this a programming error?
7. I am experiencing duplicate month headings in Outlook 2003 pri
8. I am experiencing duplicate month headings in Outlook 2003 print p
When I print preview any calendar type/page layout, I see two month headings at the top left corner like this: May 2006 May 2006 This is not a header/footer entry as I don't have anything in the header/footer settings. Is this a software bug? Is there a fix? This is very frustrating as I've looked everywhere. I have even done coding in Outlook and looked in the more obscure areas for the source of this duplication. Thanks in advance.