> -----Original Message-----
> From: Peter Eisengrein [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, June 05, 2001 13:57
> To: 'perl-win32-gui-users@lists.sourceforge.net'
> Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak?
> 
> 
> The zip thing worked!!! That's terrific except that scripts 
> that used to
> work no longer do. Bummer. I get this kind of an error:
> 
> "Your vendor has not defined Win32::GUI macro Category, used 
> at..." (see
> below snippet)
> 
> What's this about a macro? I get what it means but can 
> someone point me
> towards which doc describes this change in functionality? In 
> 0.0.558 do I
> need to declare these "macros" or something? Here's a snippet 
> of what it is
> complaining about (works with 0.0.502):
> 
> ######



Not sure, but try changing:
> $Window->AddCombobox( 
>       -name   => Category,
>       -left   => 105, 
>       -top    => 5,
>       -width  => 45, 
>       -height => 100,
>       -style  => WS_VISIBLE | 2 | WS_VSCROLL | WS_HSCROLL |
> ES_AUTOHSCROLL,
>       -tabstop => 1,
> );
to 
$Window->AddCombobox( 
        -name   => "Category",
        -left   => 105, 
        -top    => 5,
        -width  => 45, 
        -height => 100,
        -style  => WS_VISIBLE | 2 | WS_VSCROLL | WS_HSCROLL
|ES_AUTOHSCROLL,
        -tabstop => 1,

I have not worked with this module long enough, but that kind of sticks
out in my mind as being a bareword.  


> 
> $Window->Category->InsertItem("");
> foreach (@category)
> {
>       chomp($_);
>       $Window->Category->InsertItem("$_");
> }
> 
> #####
> 
> 
> THanks for everyone's help.
> Pete
> 
> 
> 
> > -----Original Message-----
> > From: Frazier, Joe Jr [mailto:[EMAIL PROTECTED]
> >
> > 
> > http://www.activestate.com/PPMPackages/zips/6xx-builds-only/wi
> > n32-gui.zi
> > p.  THIS contains the ppd file for install.  
> > 1) unzip
> > 2) cd to foldery where you unziped files
> > 3) type "ppm install Win32-GUI.ppd"
> > 
> > 
> 
> _______________________________________________
> Perl-Win32-GUI-Users mailing list
> Perl-Win32-GUI-Users@lists.sourceforge.net
> http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users
> 

Reply via email to