in reply to Extracting memos from an Outlook Inbox
print "$it->{ReceivedTime} $it->{Subject}\n";
#-------------------my sub----------------------- sub time{ my $var = Variant(VT_DATE,$it->{ReceivedTime} ); my $OleObject->{value} = $var; my $OleObject->Method($var); } #------------------------------------------------
Of course, together with: "use Win32::OLE::Variant;". else, it's perfect! : )) Stefan Marchitanmy $subj = $it->{Subject};
|
---|