Kevin, there's not one single command. Loop through the Items collection of
that folder with a backwards running For-Next loop, which looks like this:
For i=Items.Count To 1 Step-1
...
Next
In the loop check each MailItem's Size property, it tells you the size in
Byte. For moving an item call its Move function and pass a variable with the
target folder. That function is explained in the VBA help.

Signature
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
Organize eMails:
<http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6>
Am Thu, 26 Jul 2007 21:44:07 -0700 schrieb Kevin Maher:
> Hi
>
[quoted text clipped - 9 lines]
>
> Kevin
Kevin Maher - 27 Jul 2007 06:40 GMT
I'll give that a try. Thanks for pointing me in the right direction.
Kevin
> Kevin, there's not one single command. Loop through the Items collection of
> that folder with a backwards running For-Next loop, which looks like this:
[quoted text clipped - 21 lines]
> >
> > Kevin