Re: Program OL Tasks using CDO/ADODB (EXOLEDB for SQL 2000)

2002-02-28 Thread Matthew Hess
Found some stuff that works... http://www.cdolive.com/cdo10.htm has property definitions that use a GUID that represents the PropsetID and a hex for the property. With these you can build some of your own cdo constants that work via EXOLEDB. Please note that the authors of cdolive want you to k

Program OL Tasks using CDO/ADODB (EXOLEDB for SQL 2000)

2002-02-26 Thread Matthew Hess
Using CDO/ADODB I can create items that Outlook will recognize as tasks: Task := CoItem.Create; Task.ContentClass := 'Task'; Task.Fields.Item['http://schemas.microsoft.com/exchange/outlookmessageclass'].Value := 'IPM.Task'; Task.Update Task.DataSource.SaveTo(path, connection, etc) But I'm st