Hi ! Help, please ;) Why my Button is not "srollable" ? Thank's. ################################
use Win32::GUI; $W = new Win32::GUI::Window( -title => "test", -left => 100, -top => 100, -width => 280, -vscroll => 1, #!!!!!! -height => 280, -name => "Window", ); $W->AddButton( -name => "Simple1", -left => 5, -top => 5, -width => 122, -height => 400, -text => "Just button", ); $W->Show; Win32::GUI::Dialog(); ################################ Arty