jeremy3210
MIS
In Outlook, I want to copy messages from my Drafts folder to my Outbox folder. Best case, I want to copy 2 of the 3 messages in the Drafts folder, and rename them.
This is what I don't understand...
This works:
This doesn't:
I get a Run-time error '450':
Wrong number of arguments or invalid property assignment.
I'm confused.
Thanks,
Jeremy
This is what I don't understand...
This works:
Code:
For Each item In Drafts.Items
item.Move Outbox
Next item
This doesn't:
Code:
For Each item In Drafts.Items
item.Copy Outbox
Next item
I get a Run-time error '450':
Wrong number of arguments or invalid property assignment.
I'm confused.
Thanks,
Jeremy