views:

1261

answers:

4

How can I enable the functionality to sync my custom list with Outlook 2007 todo or calendar list? I assume it's possible with custom lists too, but I cannot find any documentation on it.

+2  A: 

To my knowledge this is not possible. If you need to sync a todo list, create a task list. Then you can delete all the columns that don't interest you, and add whatever columns you want to use.

The same goes for calendar, if you want a list syncronised with your outlook calendar, then create a calendar list and customize it to your needs.

Filip Lindboe
Thanks, I was afraid so. I was hoping to enable it for my existing and filled with data custom list, but I think it's a no-go indeed.
htaler
Yearh, im sorry. If you set up a view on the new list with the same columns as in the old list, you can edit them in datasheet and practically copy the cells as if they were excel sheets.
Filip Lindboe
+1  A: 

Yeah not possible sadly. Also, if you create custom columns in a task list or calender, Outlook won't sync those columns.

Mark Mascolino
+2  A: 

This is available / possible (well it takes some programming to achieve it) - see here.

For my solution, I aggregate data between sites and sync them with outlook. There are some tricky things like to map item's uniqueId to integer ID (probably a database table with mappings) to refer to specific item correctly, but it's not impossible.

But it's not something you can use right away - coding required. However if you really, really need it, then it's a some-way to go.

Janis Veinbergs
Thank you for that. STSSync protocol handler seems interesting indeed.
htaler
And you can implement that simply if you work with a specific list.
Janis Veinbergs
A: 

Janis, any chance of shareing your solution

For my solution, I aggregate data between sites and sync them with outlook. There are some tricky things like to map item's uniqueId to integer ID (probably a database table with mappings) to refer to specific item correctly, but it's not impossible.

Willem