Re: [perl-win32-gui-hackers] [win32-gui] Grid Height & Width

2006-10-24 Thread Arthur Schwarz
use Win32::GUI; # Binding to Win32 GUI use Win32::GUI::Grid; # Thin binding to Win32 GUI Grid use integer; my $TopWindow = new Win32::GUI::Window( # Create Main Window -name => 'TopWindow', -left => 30, -height =

Re: [perl-win32-gui-hackers] [win32-gui] Grid Height & Width

2006-10-24 Thread Robert May
Cutting your example down to what's necessary, you are forgetting about the non-client area of the window - child windows have that as well as top-level windows, it's just more obvious on top-level windows. #!perl -w use strict; use warnings; use Win32::GUI(); use Win32::GUI::Grid(); my $TopW