Subject: | Can't locate auto/Win32/GUI/AxWindow/EnumPropert.al |
The below script fails with the error message in the subject.
use Win32::GUI::AxWindow;
my $Window = new Win32::GUI::Window (
-name => "Window",
-title => "Win32::GUI::AxWindow test",
-post => [100, 100],
-size => [400, 400],
);
# Add a WebBrowser AxtiveX
my $c = new Win32::GUI::AxWindow (
-parent => $Window,
-name => "c",
-control => "Shell.Explorer.2",
#-control => "{8222F6A3-FCD1-4453-B676-135A5AD477C9}",
-pos => [0, 0],
-size => [400, 400],
);
print ">", $c->CallMethod("Navigate", "http://www.perl.com/" ), "\n";
print $c->EnumPropertyId(), "\n";
$Window->Show();
Win32::GUI::Dialog();