[perl-win32-gui-users] GUI performance problem ..

2007-09-12 Thread Maxmelbin Neson (RBIN/EMT1)
Hello All, I am using the Win 32 GUI for one of my applications . I have a small performance problem. During the processing of the application , if any dialog box pops up (non Win 32 Gui popups) , the area of the this popup which overlaps with the Window frame become shaded ... they clear only

[perl-win32-gui-users] How to print text in COLOR in Textfield

2007-08-22 Thread Maxmelbin Neson (RBIN/EMT1)
Hello All, I have a multiline Textfield which acts as my output console. $main = Win32::GUI::Window->new(-name => 'Main', -text => 'Perl Win32 GUI', -width => 550, -height => 660,

[perl-win32-gui-users] Actions not firing in Win32GUI

2007-08-21 Thread Maxmelbin Neson (RBIN/EMT1)
Hello All, I have a small perl win32 file which generates a GUI window, which worked pretty fine. Now, I converted it into a .pm file and called it from an other .pl fie. The GUI still come up OK, but the actions are not firing . The main code in the new setup is .. BEGIN { $0 =~ /^(.*)[\\\

[perl-win32-gui-users] How to sue DialogUI

2007-07-11 Thread Maxmelbin Neson (RBIN/EMT1)
Hello , How do I use DialogUI method to make my Window take "Tabs" etc use Win32::GUI; use Win32::GUI::GridLayout; $main = Win32::GUI::DialogBox->new(-name => 'Main', -text => 'Perl Win32 GUI', -width => 550,

Re: [perl-win32-gui-users] How to terminate a window in Win32:GUI

2007-07-06 Thread Maxmelbin Neson (RBIN/EMT1)
prompt. Thanks and Regards Maxmelbin Neson -Original Message- From: Geoffrey Spear [mailto:[EMAIL PROTECTED] Sent: Friday, 6. July 2007 5:58 PM To: Maxmelbin Neson (RBIN/EMT1) Cc: perl-win32-gui-users@lists.sourceforge.net Subject: Re: [perl-win32-gui-users] How to terminate a window in

[perl-win32-gui-users] How to terminate a window in Win32:GUI

2007-07-06 Thread Maxmelbin Neson (RBIN/EMT1)
Hello , I have a button CANCEL which should close the window .. How to do it ? What is the method My code .. use Win32::GUI; use Win32::GUI::GridLayout; $main = Win32::GUI::DialogBox->new(-name => 'Main', -text => 'Perl Win32 GUI',

Re: [perl-win32-gui-users] How do I replace the text in atextfield in Win32::GUI /textfield

2007-07-06 Thread Maxmelbin Neson (RBIN/EMT1)
Thanks .. That helped One more question .. How do I retrieve the value form a text field to a variable ? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, 6. July 2007 12:19 PM To: Maxmelbin Neson (RBIN/EMT1) Subject: Re: [perl-win32-gui-users] How

[perl-win32-gui-users] How do I replace the text in a textfield in Win32::GUI /textfield

2007-07-05 Thread Maxmelbin Neson (RBIN/EMT1)
Right now I do it like this ... $chkb = $main->AddTextfield( -width => 100, -height => 30, -left => 100, -top=> 10, -position => bottom, -text => $sel3, ); $sel3 = "new string"