On Tue, 08 Mar 2005, Suresh Govindachar wrote:
> Hello,
> 
> If myDestination is a folder in Microsoft Outlook VBA code,
> it is possible to execute a VBA line such as the following:
> 
>    myDestination.Items(1).UnRead = 1
> 
> This will mark the first mail inside the folder
> myDestination as unread (setting the mail item's UnRead
> property to true).
> 
> I tried doing the same thing in perl with lines such as:
> 
>       $my_destination->Items(1)->UnRead = 1;
> and   $my_destination->Items(1)->UnRead(1);

        $my_destination->Items(1)->{UnRead} = 1;

Cheers,
-Jan


_______________________________________________
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to