M
Marcus
This is probably a stupid questions since I'm a beginner in Win32::OLE and
Perl...
In the code below I can get the length from $members, but the next line
outputs:
"member array name: Win32::OLE=HASH(0x1825090)->Item(0)->{text}"
code:
$members = $object->getElementsByTagName("BriefDescription");
print "$members->{length}\n";
print "member array name: $members->Item(0)->{text}\n";
I don't think there's anything wrong with $members itself, since the below
will print the value I'm looking for:
foreach my $tmp (in ($members)) {
print "member name: $tmp->{text}\n";
}
Thanks!!
Marcus
Perl...
In the code below I can get the length from $members, but the next line
outputs:
"member array name: Win32::OLE=HASH(0x1825090)->Item(0)->{text}"
code:
$members = $object->getElementsByTagName("BriefDescription");
print "$members->{length}\n";
print "member array name: $members->Item(0)->{text}\n";
I don't think there's anything wrong with $members itself, since the below
will print the value I'm looking for:
foreach my $tmp (in ($members)) {
print "member name: $tmp->{text}\n";
}
Thanks!!
Marcus