The workaround is to call the Win32::GUI::SendMessage function instead of
the Pos function.
If you call the Pos funtion first it seems to disable future calls...
#!perl
use Win32::GUI;
$Window = new GUI::Window(
-title=> "Win32::GUI::Slider test",
-left => 100,
-top => 10
Hello
To solve the problem, i just changed the line :
$main->AddLabel(-text => "Hello, world");
by :
$main->AddLabel(-name => 'montext',
-text => "Hello, world");
Thanks a lot to Stuart and Glenn
Thanks also to Erick, for the CODE samples provided
May the Win32::GUI documen
2 matches
Mail list logo