harryC has asked for the wisdom of the Perl Monks concerning the following question:
sub makencalc { use OpenOffice::OODoc; my $doc = ooDocument(file => "$path_to_files\\verschillenstaatsjabloon +.ods"); my $testt = $doc->cellValue("Sheet1","D1"); print "test: $testt\n"; $testt = $doc->cellValue("Blad1","D1"); print "test: $testt\n"; $doc->cellValue("Sheet1", "A5", 'test text english '); $doc->cellValue("Blad1", "A6", "test text dutch"); $doc->save("$path_to_files\\verschillenstaat.ods"); }
|
|---|