Did you look in the Object Browser for that?
Here's a code sample from the Object Browser showing getting a calendar
folder from GetSharedDefaultFolder:
Sub ResolveName()
Dim myOlApp As Outlook.Application
Dim myNamespace As Outlook.NameSpace
Dim myRecipient As Outlook.Recipient
Dim CalendarFolder As Outlook.MAPIFolder
Set myOlApp = CreateObject("Outlook.Application")
Set myNamespace = myOlApp.GetNamespace("MAPI")
Set myRecipient = myNamespace.CreateRecipient("Dan Wilson")
myRecipient.Resolve
If myRecipient.Resolved Then
Call ShowCalendar(myNamespace, myRecipient)
End If
End Sub
Sub ShowCalendar(myNamespace, myRecipient)
Dim CalendarFolder As Outlook.MAPIFolder
Set CalendarFolder = _
myNamespace.GetSharedDefaultFolder _
(myRecipient, olFolderCalendar)
CalendarFolder.Display
End Sub
You can just use a Tasks folder instead to get at the tasks in that folder.

Signature
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm
> Unfortunately, I am not familiar enough with the interface between
> Access and Outlook. Could you be a bit more specific, please?
[quoted text clipped - 8 lines]
>>for that function to see the arguments and a code snippet on how to use
>>it.
The Facilitator - 30 Mar 2007 17:20 GMT
Thank you VERY much for the help.
Forgot to ask, does this work in 2K2?
O
>Did you look in the Object Browser for that?
>
[quoted text clipped - 24 lines]
>
>You can just use a Tasks folder instead to get at the tasks in that folder.
Ken Slovak - [MVP - Outlook] - 30 Mar 2007 19:18 GMT
That code will work in any version of Outlook from 2000 to 2007.

Signature
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm
> Thank you VERY much for the help.
>
> Forgot to ask, does this work in 2K2?
>
> O