RE: [perl-win32-gui-users] Newbie Win32::GUI Question

2003-01-23 Thread Rogers, John
In your click sub, Try, $Win->campaign->Text("recording.."); call them by name. JohnR > -Original Message- > From: Jeff Slutzky [mailto:[EMAIL PROTECTED] > Sent: Friday, January 24, 2003 1:24 PM > To: 'perl-win32-gui-users@lists.sourceforge.net' > Subject: [perl-win32-gui-users]

[perl-win32-gui-users] Newbie Win32::GUI Question

2003-01-23 Thread Jeff Slutzky
I have created a window with 4 buttons, 2 labels, 2 text fields, and a status bar. In the Button_1 click event I try to write to the txt field and get the following error: "Can't locate auto/Win32/GUI/Textfield/text.al in @INC (@INC contains; C:/Perl/lib C:/Perl/site/lib .) at C:\Perl\Perlscripts

[perl-win32-gui-users] "Can't locate loadable object for module Win32::GUI in @INC..."

2003-01-23 Thread Anton Yasnitsky
Hi, everybody! That's basically my primitive beginner's question: what should I do since I downloaded Win32::GUI 0.0.665 from http://dada.perl.it/ (many thanks to Aldo Calpini!) and unzipped it? I realize that the whole unzipped contents should be put somewhere (it says "@INC contains C:/Perl/

[perl-win32-gui-users] TreeView Issues

2003-01-23 Thread SPRENGER, EDWARD J
I've looked thoroughly through the entire archive for this list, and haven't seen these problem solutions resolved. The issues I'm having are all related to a treeview object, with the -checkboxes => 1 option. - For some reason, enabling checkboxes screws up the horizontal scrolling of the object

Re: [perl-win32-gui-users] How I have to separe the Win32::GUI between pm module

2003-01-23 Thread Aldo Calpini
Guillem Cunillera Wefers wrote: > Thank you for your attention, but these 2 possible problems doesn't > appear in my program. I think I have a more basic problem. > Let me present how I distribute in pseudocode, for a module that can > easy be extended to more modules. > > --- > mod

[perl-win32-gui-users] Win32::GUI Release 0.0.665

2003-01-23 Thread Aldo Calpini
hello people, finally, an update! this release of Win32::GUI introduces many new features, the most important being: - the NEM (New Event Model), which allows for something like: $Window->AddButton( -text => 'say hello', -onClick => sub { print "hello, world!\n"; }, ); *** edi