[perl-win32-gui-users] Disabling Grid

2004-06-14 Thread du4mi
Hello perl-win32-gui-users, I am trying to disable Win32::GUI::Grid. changing -visible and -enable to 0 with subsequent repainting window dont disable Grid. please see my script below: use strict; use warnings; use Win32::GUI; use Win32::GUI::Grid; my $window = new Win32::GUI::Window(-name=>"W

[perl-win32-gui-users] some questions about Win32::Grid

2004-04-25 Thread du4mi
Hello I need some advice with Win32::Grid: - the Grid-Combobox items are always editable unlike GUI-Combobox, where itcan be prohibited with: -style => WS_VISIBLE|3|WS_VSCROLL , in other words disable inPlaceEdit in Grid. SetCellEditable(0) turns Grid's Combobox to simple Cell

[perl-win32-gui-users] Modifying of Combobox in Grid Control

2004-04-09 Thread du4mi
Hello I use Grid control and every cell in the grid is GVIT_COMBO ,in other words combobox. The width of drop down button is by default 15 pixel. How can I change it to 10 or 8 pixel? I suppose I should recompile MFCGrid or another dll, but I dont know what I should modify there. Thanks. -- Bes

[perl-win32-gui-users] How create a not resized window properly?

2004-01-26 Thread du4mi
Hi again, I am creating a not-resized window with -minsize and -maxsize. Now I need to disable both the resize-corner in status bar and double-edged resize-arrows-cursor. ( <--> ) I know I can achieve it with Dialog() instead Window(), but Dialog is cannot be minimized :-( -- Pavel

[perl-win32-gui-users] MaxLength and ReadOnly seems dont work for RichEdit

2004-01-26 Thread du4mi
Hallo All, from C:/Perl/html/lib/Win32/GUI/methods.html: >MaxLength( [CHARS] ) >Limits the number of characters that the Textfield accept to CHARS, >or returns the current limit if no argument is given. >Applies to: _RichEdit_, Textfield and: >ReadOnly( [FLAG] ) >Gets or sets the readonly

[perl-win32-gui-users] How can I install Win32-GUI-DIBitmap without MSVC?

2004-01-22 Thread du4mi
Hi All, I am trying to install Win32-GUI-DIBitmap. At first I install ppm, but when I tryed to run demo.pl sample script I got a error: Can't call method "ConvertToBitmap" on an undefined value at D:\IPSwitch\test\de mo.pl line 14. then I tryed to install this module from scratch, how it wrotten

[perl-win32-gui-users] ProgressBar inside StatusBar dont work with Timer

2004-01-20 Thread du4mi
This is modified example from Stephen Pick. I replaced while(1) by Timer-Method. The ProgressBar dont work with Timer. Have I made a mistake? Or I can call ProgressBar only inside main loop? #!perl -w use strict; use Win32::GUI; my $window = new Win32::GUI::Window( -name => "main",