[SPAM?] Compilation of Inline::Ruby on win32

2007-08-09 Thread Ed S. Peschko
All, I'm trying to compile Inline::Ruby on win32, using visualc++ v6 and activestate perl, without too much luck, in trying to get HttpWatch to work with perl. In particular, I'm having difficulty with the headers. When you try to compile it, the lines in malloc.h and signal.h (win32 headers)

RE: a simple program

2007-08-09 Thread Steve Howard (PFE)
I'm having a little trouble understanding the question. Are you expecting Perl to compile into an executable program like C would do? If so, Perl doesn't do that. Perl is an interpreted language, and compiles when called, then executes. The script is loaded by the interpreter, and must have the

finding the window

2007-08-09 Thread Daniel Burgaud
Hi Is there a way for Perl (GUITest or other modules for that matter) to know that a window is owned by a particular program? Currently, I am using Win32::GUItest my @windows = FindWindowLike(0, program name, undef,0,0); my ($name, $x,$y,$w,$h); for my $id (@windows) { $name =

Re: finding the window

2007-08-09 Thread Bill Luebkert
Daniel Burgaud wrote: Hi Is there a way for Perl (GUITest or other modules for that matter) to know that a window is owned by a particular program? GetWindowThreadProcessId might help you. Currently, I am using Win32::GUItest my @windows = FindWindowLike(0, program name, undef,0,0);