Hi,
I am relatively new to Perl programming (in fact, PC programming in general).
I have a script with multiple text input boxes and, everytime I move the mouse
off
the window and back again, the keyboard input cursor has gone missing. What I
am doing is using copy/paste from multiple other pro
Hi,
Try the following:
use strict;
use warnings;
use Win32::GUI (qw {WS_CAPTION WS_SIZEBOX WS_CHILD WS_CLIPCHILDREN
WS_EX_CLIENTEDGE});
my $W = new Win32::GUI::Window(
-name => "W",
-title => "mouse click tracking",
-left => 54,
-top => 77,
-width => 546,
-height => 318,
);
my $textfield = $W-
2 matches
Mail list logo