http://qs321.pair.com?node_id=1164954


in reply to Microsoft Project and Perl

I stumbled over this old node today. It gave me the start on using MS project with perl :-) Thanks!

However the following line led to an error:

my $project = $app->{Projects}->Item(1);
In case you are get the same, use the following instead:
my $project = $app->Projects(1);

Hope this info helps future readers. Rata