Insert Recurring Task through VBA Code...

S

Sasidhar G

Hi

I need to insert a recurring task through VBA Code. The RecurringTaskInsert
VBA method gives me a popup, but I would like to create the entire task
through code.

Can you suggest an appropriate API to achieve the same?

Thanks,
Sasidhar.
 
J

Jan De Messemaeker

Hi all,

That, unfortunately, only records the displaying of the Insert Recurring
task form as well
Looked at several possibilities but to no avail.
The recurring property of a task is read only.
HTH
 
J

John

Sasidhar G said:
Hi

I need to insert a recurring task through VBA Code. The RecurringTaskInsert
VBA method gives me a popup, but I would like to create the entire task
through code.

Can you suggest an appropriate API to achieve the same?

Thanks,
Sasidhar.

Sasidhar,
As Jan noted the RecurringTaskInsert Method is not available for full
VBA use. Your best (and only) option is to create a series of tasks with
the appropriate summary line using the Add Method on a Task Object. It
won't have the recurring task symbol in the Information field, but
otherwise it will look and act the same.

John
Project MVP
 
Top