From: Frazier, J. J. <Joe...@Pe...> - 2001-06-05 19:32:11
|
> -----Original Message----- > From: Peter Eisengrein [mailto:Pet...@at...] > Sent: Tuesday, June 05, 2001 13:57 > To: 'per...@li...' > Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? >=20 >=20 > The zip thing worked!!! That's terrific except that scripts=20 > that used to > work no longer do. Bummer. I get this kind of an error: >=20 > "Your vendor has not defined Win32::GUI macro Category, used=20 > at..." (see > below snippet) >=20 > What's this about a macro? I get what it means but can=20 > someone point me > towards which doc describes this change in functionality? In=20 > 0.0.558 do I > need to declare these "macros" or something? Here's a snippet=20 > of what it is > complaining about (works with 0.0.502): >=20 > ###### Not sure, but try changing: > $Window->AddCombobox(=20 > -name =3D> Category, > -left =3D> 105,=20 > -top =3D> 5, > -width =3D> 45,=20 > -height =3D> 100, > -style =3D> WS_VISIBLE | 2 | WS_VSCROLL | WS_HSCROLL | > ES_AUTOHSCROLL, > -tabstop =3D> 1, > ); to=20 $Window->AddCombobox(=20 -name =3D> "Category", -left =3D> 105,=20 -top =3D> 5, -width =3D> 45,=20 -height =3D> 100, -style =3D> WS_VISIBLE | 2 | WS_VSCROLL | WS_HSCROLL |ES_AUTOHSCROLL, -tabstop =3D> 1, I have not worked with this module long enough, but that kind of sticks out in my mind as being a bareword. =20 >=20 > $Window->Category->InsertItem(""); > foreach (@category) > { > chomp($_); > $Window->Category->InsertItem("$_"); > } >=20 > ##### >=20 >=20 > THanks for everyone's help. > Pete >=20 >=20 >=20 > > -----Original Message----- > > From: Frazier, Joe Jr [mailto:Joe...@Pe...] > > > >=20 > > http://www.activestate.com/PPMPackages/zips/6xx-builds-only/wi > > n32-gui.zi > > p. THIS contains the ppd file for install. =20 > > 1) unzip > > 2) cd to foldery where you unziped files > > 3) type "ppm install Win32-GUI.ppd" > >=20 > >=20 >=20 > _______________________________________________ > Perl-Win32-GUI-Users mailing list > Per...@li... > http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users >=20 |