OK, but can I at least find the constants that are exported from Win32::OLE::Const?
Yes, you can use the following code example to view all the constants – you really shouldn’t need this, but if you want to know what’s going on, it might help: use strict; use Win32::OLE; use Win32::OLE::Const; my $xl = Win32::OLE::Const->Load(“Microsoft Excel”); printf “Excel type library contains %d constants:\n”, scalar keys %$xl; foreach my $Key (sort keys %$xl) { print “$Key = $xl->{$Key}\n”; } Generally you should look at the documentation for Win32::OLE::Const.
Related Questions
- The game installed OK, but when I try to run the game I get an error that reads "General Protection Fault: History: Init_Engine" And then the launcher quits. Whats wrong?
- OK, but can I at least find the constants that are exported from Win32::OLE::Const?
- Is it OK to put the Magic Bullet Platinum Pro in the dishwasher?