Skip Menu |

This queue is for tickets about the Win32-GUI-AxWindow CPAN distribution.

Report information
The Basics
Id: 14690
Status: stalled
Priority: 0/
Queue: Win32-GUI-AxWindow

People
Owner: lrocher [...] cpan.org
Requestors: barries [...] slaysys.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.07
Fixed in: (no value)



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();
Hi, Try replacing EnumPropertyId with EnumPropertyID. LRocher Show quoted text
> 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();