in reply to Re^18: how to install perlmodules in windowsXP
in thread how to install perlmodules in windowsXP

I guess you have two options:
1) Install Win32-GUI using ppm;
2) Build it with ActivePerl using an MSVC compiler.

Modules built using ActivePerl will generally work fine on Strawberry Perl and vice-versa - no matter which compiler was actually used to build the module. (There are exceptions.)

Cheers,
Rob
  • Comment on Re^19: how to install perlmodules in windowsXP

Replies are listed 'Best First'.
Re^20: how to install perlmodules in windowsXP
by veeruch (Sexton) on Mar 12, 2007 at 14:25 UTC
    Hi Robs,
    I instlled Win32-GUI using ppm
    use Win32::GUI(); use Win32::GUI::AxWindow; # Main Window $Window = new Win32::GUI::Window( -name => "Window", -title => "SCM Wrapper", -pos => [100, 100], -size => [400, 400], ); # Add a WebBrowser AxtiveX $Control = new Win32::GUI::AxWindow ( -parent => $Window, -name => "Control", -control => "Shell.Explorer", -pos => [0, 0], -size => [400, 400], ); # Register some event $Control->RegisterEvent("StatusTextChange", sub { $self = shift; $eventid = shift; print "Event : ", @_, "\n"; } ); # Call Method $Control->CallMethod("Navigate", 'C:'); # Event loop $Window->Show(); Win32::GUI::Dialog(); # Main window event handler sub Window_Resize { if (defined $Window) { ($width, $height) = ($Window->GetClientRect)[2..3]; $Control->Move (0, 0); $Control->Resize ($width, $height); } }
    iam getting all except tool bar and address bar.how can i get it