[perl-win32-gui-users] GUI Programming Job

2005-10-10 Thread Ariel Serbin
GUI Users, The law firm that I work for is expanding its tech department (i.e. me and the other guy) and has several large programming projects on the horizon. The most notable of these projects is a new case management system, which will be a large, complicated Windows program (or possibly a sui

Re: [perl-win32-gui-users] Re: Centering Win32::GUI::GetOpenFileName Dialog Box

2005-10-10 Thread Ariel Serbin
Thanks for the reply, but I'm still getting the usage errors with this script, no matter how I call Hook. With the attached file, I tried these 3 ways of calling it: #$win->Hook($win, WM_ENTERIDLE, \&Idle($win)); #$win->Hook(WM_ENTERIDLE, \&Idle($win)); Win32::GUI::Hook($win,WM_ENTERIDLE, \&Idle(

Re: [perl-win32-gui-users] Re: Centering Win32::GUI::GetOpenFileName Dialog Box

2005-10-10 Thread Jeremy White
command that passes the $win object. when i run that line, then i get a usage error that says only to pass the msg and the coderef. does anyone have any idea what's going on here? #$win->Hook($win, WM_ENTERIDLE, \&Idle($win)); Try: $win->Hook(WM_ENTERIDLE, \&Idle($win)); When call