Could someone please help me with the following


I know how to create a task in outlook using vba

dim olApp as outlook.application
dim olTask as outlook.taskitem

set olapp = new outlook.application
set oltask = olapp.createobject(oltaskitem)

with oltask
.subject
.startdate
etc.
.display or .save
End with

set olapp = nothing
set oltask = nothing


but how do you create the folder or choose the folder where the task needs to go?


Thank you for any help


Josh