James S. Martin wrote:
>Hey folks,
>I'm trying to figure out how to use the SetupSup module(
>http://jenda.mccann.cz/perl/Setupsup.pm.html).
>The particular function I'm trying to use is:
>WaitForWindow($title, \$window, $timeout, [$refresh])
>Here's my code:
Well, James...
There are a numbe
From: <[EMAIL PROTECTED]>
> The \$window is a reference, it will hold a handle to the "found" window
> upon success
Making what Chuck and Grant said explicit:
use Win32::Setupsup;
$title='Notepad';
my $window;
Win32::Setsup::WaitForAnyWindow($title, \$window,1,100) or
die print Win32::S
>Hey folks,
>
>I'm trying to figure out how to use the SetupSup module(
>http://jenda.mccann.cz/perl/Setupsup.pm.html).
>
>The particular function I'm trying to use is:
>
>WaitForWindow($title, \$window, $timeout, [$refresh])
>
>Here's my code:
>
>
>
>use Win32::Setupsup;
>
>$title=Notepad
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
- -start-
> "Martin, James S." <[EMAIL PROTECTED]>
>at05/15/2000 08:54 AM
>Here's my code:
>
>use Win32::Setupsup;
>$title=Notepad;
>Win32::Setsup::WaitForWindow($title, \$window, "1", "100");
>print "Window is there\n";
>Usage: Win32