Thread [Tk/Win32::OLE] Abfragen ob Excel installiert ist
(2 answers)
Opened by Kean at 2011-08-23 15:38
das or die ... ist keine magische anweisung.
ausführlicher kann man das daher so schreiben: Code (perl): (dl
)
1 2 3 4 5 6 if (my $ex = Win32::OLE->new('Excel.Application')) { ... } else { # fehlermeldung } du kannst aber auch einen do-block verwenden: Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |