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
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(
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
3 matches
Mail list logo