Re: [perl-win32-gui-users] FindWindow and SendMessage

2007-08-15 Thread Perl Rob
Well, I answered my own question, so I thought I'd post the answer in case it helps someone else who wants to close a window in this manner. Turns out I had to create a quoted word list and add WM_CLOSE to it (as a part of my "use Win32::GUI" line): #

Re: [perl-win32-gui-users] FindWindow and SendMessage

2007-08-15 Thread Perl Rob
D'oh! I just saw that FindWindow() and SendMessage() are both listed in the "Common Methods" of the ActivePerl documentation. I apologize that I didn't RTFM before posting! However, I can't figure out how to properly call the SendMessage() method. It requires an object reference, but how ca

[perl-win32-gui-users] FindWindow and SendMessage

2007-08-15 Thread Perl Rob
Hi all, I'm attempting to close a window using the FindWindow() and SendMessage() functions as documented in MSDN. I can't get it to work, so I was wondering if anyone might help me see what's wrong with my code: ## use Win32::API;