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):

######
$Window->AddCombobox( 
        -name   => Category,
        -left   => 105, 
        -top    => 5,
        -width  => 45, 
        -height => 100,
        -style  => WS_VISIBLE | 2 | WS_VSCROLL | WS_HSCROLL |
ES_AUTOHSCROLL,
        -tabstop => 1,
);

$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"
> 
> 

Reply via email to