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 =
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
2 matches
Mail list logo