in reply to Re^2: keys in a Win32::OLE Hash
in thread keys in a Win32::OLE Hash

Absent your actual data, my best suggestion is probably to "print" $hash using something like:

use Data::Dumper; ... print Dumper( $hash );

This way, you can see what you have on your hands and get an idea of the syntax needed to work with it.

intro to references and References quick reference are probably also required reading. :-)

HTH,

planetscape