From: <a98...@gm...> - 2007-08-28 13:57:56
|
Hi, I want to create a window with some buttons, labels, and textfields. but the window is too small - how can I realize working scrollbars? I already can the scrollbars but they aren't working ... see my code-snipplet below. thx juergen [snip] $main = Win32::GUI::Window->new( -name => 'Main', -left => CW_USEDEFAULT, -width => 100, -height => 100, -text => $cfg{title_string}, -menu => $cfg{mainmenu}, -vscroll => 1, -hscroll => 1, -size => [800,550], -helpbutton => 0, -maximizebox => 0, -resizable => 1, -background => {0x00FF00}, -foreground => {0x33AABB}, -dialogui => 1, -accel => $cfg{accelerator}, -noflicker => 1, -onMinimize => \&toggle_show_state, -eventmodel => both, ); [/snip] -- Ist Ihr Browser Vista-kompatibel? Jetzt die neuesten Browser-Versionen downloaden: http://www.gmx.net/de/go/browser |