Does anyone know how to set the Priority Property for a Task when creating a New Task in Exchange mailbox using WebDav. Like what the hexadecimal code for that is.
Here's the code that I'm using - and so far here're the codes that I've found.
strXMLNSInfo = "xmlns:d=""DAV:"" " & _
"xmlns:e="" " & _
"xmlns:b=""urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/"" " & _
"xmlns:f=""urn:schemas:mailheader:"" " & _
"xmlns:g=""urn:schemas:httpmail:"" " & _
"xmlns:h=""
' Set the Task item properties. The reminder time is set in seconds.
' To create an all-day meeting, set the dtstart/dtend range for 24 hours
' or more and set the alldayevent property to 1. See the documentation
' on the properties in the urn:schemas:calendar: namespace for more information.
'"<cal:dtstart dt:dt=""dateTime.tz"">2004-05-18T23:00:00.000Z</cal:dtstart>" & _
Start = Start.Replace("\", "-")
Start = Start.Replace("/", "-")
strTaskInfo = "<h:0x00008102 b:dt=""float"">.75</h:0x00008102>" & _
"<h:0x00008101 b:dt=""int"">0</h:0x00008101>" & _
"<h:0x00008104 b:dt=""dateTime.tz"">" & Start & "T13:30:00.00Z</h:0x00008104>" & _
"<h:0x00008105 b:dt=""dateTime.tz"">" & dtEnd & "T00:00:00Z</h:0x00008105>" & _
"<h:0x0000811C b:dt=""boolean"">0</h:0x0000811C>" & _
"<h:0x00008503 b:dt=""boolean"">1</h:0x00008503>"
'"<h:0x00008102 b:dt=""float"">0</h:0x00008102>" & _
'00008102 is percentage of the Task completed
'00008101 is Status - 0-4 Not Started-Completed
'00008104 is start date
'00008105 is end date
'0000811C is - Outlook task is done or not
'00008503 is
'00008113 is Task State
'x0810f Date Completed
'x08110 Actual Effort
'x08111 estimated effort
'x08518 Mode
'x0811f as Owner
Thanks.
Here's the code that I'm using - and so far here're the codes that I've found.
strXMLNSInfo = "xmlns:d=""DAV:"" " & _
"xmlns:e="" " & _
"xmlns:b=""urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/"" " & _
"xmlns:f=""urn:schemas:mailheader:"" " & _
"xmlns:g=""urn:schemas:httpmail:"" " & _
"xmlns:h=""
' Set the Task item properties. The reminder time is set in seconds.
' To create an all-day meeting, set the dtstart/dtend range for 24 hours
' or more and set the alldayevent property to 1. See the documentation
' on the properties in the urn:schemas:calendar: namespace for more information.
'"<cal:dtstart dt:dt=""dateTime.tz"">2004-05-18T23:00:00.000Z</cal:dtstart>" & _
Start = Start.Replace("\", "-")
Start = Start.Replace("/", "-")
strTaskInfo = "<h:0x00008102 b:dt=""float"">.75</h:0x00008102>" & _
"<h:0x00008101 b:dt=""int"">0</h:0x00008101>" & _
"<h:0x00008104 b:dt=""dateTime.tz"">" & Start & "T13:30:00.00Z</h:0x00008104>" & _
"<h:0x00008105 b:dt=""dateTime.tz"">" & dtEnd & "T00:00:00Z</h:0x00008105>" & _
"<h:0x0000811C b:dt=""boolean"">0</h:0x0000811C>" & _
"<h:0x00008503 b:dt=""boolean"">1</h:0x00008503>"
'"<h:0x00008102 b:dt=""float"">0</h:0x00008102>" & _
'00008102 is percentage of the Task completed
'00008101 is Status - 0-4 Not Started-Completed
'00008104 is start date
'00008105 is end date
'0000811C is - Outlook task is done or not
'00008503 is
'00008113 is Task State
'x0810f Date Completed
'x08110 Actual Effort
'x08111 estimated effort
'x08518 Mode
'x0811f as Owner
Thanks.