Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^18: how to install perlmodules in windowsXP

by veeruch (Sexton)
on Mar 10, 2007 at 13:10 UTC ( [id://604132]=note: print w/replies, xml ) Need Help??


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

Hi Rob,
iam using strawberry-perl with dmake and mingw.
still iam unable install the Win32::GUI(like Win32::GUI::AxWindow can only be built using MSVC, not 'gcc')
C:\Win32-GUI-1.04>perl Makefile.PL Argument "6.30_01" isn't numeric in subroutine entry at Makefile.PL li +ne 9. BUILDENV=mingw Used build environment is: MSWin32 and MinGW NOTE: Makefile.PL will add the instruction to use the Resource Compile +r to your Makefile; if you don't want to compile resources with your extens +ion, call this script with this additional argument: perl Makefile.PL USERESOURCE=0 Checking if your kit is complete... Looks good Win32::GUI::AxWindow can only be built using MSVC, not 'gcc', as it depends on the Microsoft Active Template Library (ATL). Win32::GUI::AxWindow will be skipped during the current build process. Writing Makefile for Win32::GUI::Constants - perfect.exe Writing Makefile for Win32::GUI::Constants At this time Win32::GUI::DIBitmap cannot be build using gcc. Win32::GUI::DIBitmap will be skipped during the current build process. Writing Makefile for Win32::GUI::DropFiles Win32::GUI::Grid can only be built using MSVC, not 'gcc', as it requires the MFC framework. Win32::GUI::Grid will be skipped during the current build process. Writing Makefile for Win32::GUI::ReleaseNotes Writing Makefile for Win32::GUI::Scintilla Writing Makefile for Win32::GUI

Replies are listed 'Best First'.
Re^19: how to install perlmodules in windowsXP
by syphilis (Archbishop) on Mar 10, 2007 at 22:31 UTC
    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
      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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://604132]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (8)
As of 2024-03-28 15:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found