[perl-win32-gui-users] Testing fork() , because I want to download with lwp

2002-04-22 Thread Guillem Cunillera Wefers
I include this simple program because I want to download some web pages without losing the user interaction. How I have to change this code in order to avoid the error in the second click ? If someone have some example for doing this I will be very very happy ! ##InterfĂ­cie grĂ fica pel

Re: [perl-win32-gui-users] Testing fork() , because I want to download with lwp

2002-04-22 Thread Aldo Calpini
Guillem Cunillera Wefers wrote: I include this simple program because I want to download some web pages without losing the user interaction. How I have to change this code in order to avoid the error in the second click ? which is the error in the second click? I ran your program and

RE: [perl-win32-gui-users] status bar

2002-04-22 Thread Peter Eisengrein
In your _Resize sub do not resize the status bar, just move it (so that it's always at the bottom). If you do nothing then it will always hold its original position which is probably not what you want. $Window-Status-Move(0, $Window-ScaleHeight-$Window-Status-Height); -Original

[perl-win32-gui-users] Getting control of an 'outside' Window

2002-04-22 Thread Wasserman, Henry
I am using perl ole automation to run an Internet Explorer Browser. I have gotten rather far, capturing frames and pretty much having my way with the DOM. Until SSL causes IE to raise a message box. I have the Window Handle to IE, is there any way with win32::GUI to wait for a child SSL window

RE: [perl-win32-gui-users] status bar

2002-04-22 Thread markd
i don't think thats what i'm trying to do. i'll explain. i have a window that 800x574 (cuts off just above the taskbar). i've disabled the maximise button and the window isn't resizable. i decided to put a status bar down the bottom cos otherwise it just looked really ugly but i can resize the

RE: [perl-win32-gui-users] status bar

2002-04-22 Thread Piske, Harald
try sub Main_Resize {return 0;} That is supposed to cancel the default behavior of the resize function. Well, that's what it says on the box ;-) If it doesn't work, try $resizing = 0; sub Main_Resize { unless ($resizing++) { $Main-Change (-size = [800, 574]);}

[perl-win32-gui-users] listview checkboxes

2002-04-22 Thread markd
is there any way of changin the state of a checkbox in a listview without actually clicking the checkbox. at the moment i'm currently looking at something like my($item) = @_; my %info = $ListView-ItemInfo($item, 4); $state = $info{-text}; print $state, \n; if ($state = X) {