Re: SetupSup Module

2000-05-16 Thread Martin . Miller
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

Re: SetupSup Module

2000-05-15 Thread Robert White
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

Re: SetupSup Module

2000-05-15 Thread Chuck . Hirstius
>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

Re: SetupSup Module

2000-05-15 Thread Grant Hopwood
-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