I am installing via ppm and am getting this error: Can't find unicode character property definition via main->r or r.pl at unicode/Is/r.pl ilne 0. I can't...
191
brad_e1
Apr 25, 2003 4:38 pm
Hi Ernesto, First off, thanks for the reply. I appreciate the help that you offered. I do apologize for my delay in responding but I have been out of town for...
192
Jason Blakey
jason_blakey
Apr 25, 2003 5:11 pm
You can try Win32::Process - it's non-blocking... Example use Win32::Process; my $workingDir = '.'; my $process; Win32::Process::Create( $process, ...
193
Jim Dawson
jd33096
Apr 25, 2003 6:51 pm
I have a program called 'tee' (a port of the UNIX 'tee' command) which will redirect input to both stdout and a file, use 'myprogram | tee outputfile39; will...
194
Dennis K. Paulsen
ctrondlpaulsden
Apr 26, 2003 6:30 am
I haven't came across this error yet myself, so I'm not sure what exactly could be causing this. If you are using the ActiveState build of Perl, you could try...
195
stupakov
Apr 29, 2003 5:46 pm
I compiled Win32-GuiTest for the latest ActivePerl 5.8.0 using VC6. It works for me. If you would like to test/use it, it is available from the following site:...
196
gkupps
Apr 29, 2003 10:30 pm
Is there a Win32::GuiTest with this functionality built in?...
197
Rajeev J
jrajeev@...
Apr 30, 2003 6:39 am
HI i have a perl script use Win32::GuiTest qw/MenuSelect/; system "start notepad"; sleep 2; MenuSelect("&File|&Exit"); when i execute this it opens the notepad...
198
Rahul Chauhan
rahulschauhan
Apr 30, 2003 6:49 am
Rajeev Your Menu Path is not right.Not the changes below ... use Win32::GuiTest qw/MenuSelect/; system "start notepad"; sleep 2; MenuSelect(39;&File|E&xit'); ......
199
Jason Blakey
jason_blakey
Apr 30, 2003 11:44 am
Is the MenuSelect function documented anywhere? jason On Wed, 30 Apr 2003 12:27:48 +0530, Rahul Chauhan wrote ... -- This email from jason blakey -...
200
Ganesh Kuppuswamy
gkupps
Apr 30, 2003 1:51 pm
Rahul and Rajeev, I'm new to Win32::GuiTest and was wondering if you guys can help me little. I'm trying to get contents of listview (SysListView32). Is this...
201
Rahul Chauhan
rahulschauhan
Apr 30, 2003 4:02 pm
Jason Precise documentation of CPAN modules are the README and eg scripts which come bundled with it. Rahul Rahul Chauhan ... UbiNetics India +91-80-2297030...
202
Dennis K. Paulsen
ctrondlpaulsden
May 1, 2003 6:44 pm
Yes, the MenuSelect function and its documentation (README.html) is available in Win32-GUITest v1.49 or greater(v1.49.2), however these builds are considered...
203
Rick
rick_gerdes2000
May 2, 2003 7:42 pm
Hello folks, silly question but one I'm stuck on. I'm using: use Win32::GuiTest qw/SendKeys/; SendKeys("(^%{DELETE})"); To atempt to send a ctrl-alt-del to a...
204
Rajeev J
jrajeev@...
May 6, 2003 5:59 am
HI , I have a requirement , i need to test for the broken link within my web application, can this be done using perl. If this can be automated using perl...
205
Rajeev J
jrajeev@...
May 9, 2003 3:47 am
I have a web page which has 2 huge text fields in that , what i am trying to do in perl is copy the content in these edit fields and paste it into a different...
206
Ernesto Guisado
erngui
May 10, 2003 10:37 am
Hi, I think you're right in that you cannot send the CTRL+ALT+DEL sequence from a program. Probably a feature they designed in for security reasons? If you...
207
p_abhijith
May 14, 2003 10:06 pm
Hi, Was anyone able to send a Mouse Double Click using the Win32::GuiTest module. I tried the below, but they doesnot seem to work. ...
208
Dennis K. Paulsen
ctrondlpaulsden
May 15, 2003 12:08 am
Hello, First, make sure you are using SendMouse and not SendKeys to do this.. And try using the following statement: SendMouse("{LEFTCLICK}{LEFTCLICK}"); ...
209
Dennis K. Paulsen
ctrondlpaulsden
May 15, 2003 12:29 am
Hello, You could use SendKeys("{TAB}") to switch focus between the two text fields. Also, Win32::Clipboard may work okay for retrieving the text back from the...
210
Dennis K. Paulsen
ctrondlpaulsden
May 15, 2003 12:43 am
Sorry, I'm not aware of a readily available version of Win32::GuiTest that includes this functionality. One thing to note about this functionality is that...
211
p_abhijith
May 15, 2003 1:13 am
ugh, never mind. my bad, its working fine. used the wrong command. use Win32::GuiTest qw(SendKeys SendMouse); SendMouse("{LEFTCLICK}{LEFTCLICK}"); print ("Sent...
212
B Garakani
behrang22
May 15, 2003 11:47 pm
Has anyone tried to send in mouse wheel up and down movements? There doesn't seem to be a function for it. Thanks! __________________________________ Do you...
213
Philip Nemec
panemec
May 21, 2003 5:18 am
It seems that SendMouseMove is multiplying everything by 3 (with Perl 5.6.8 and Windows XP). #!/usr/bin/perl use Win32::GuiTest qw(:ALL); SendMouseMoveAbs(0,...
214
Philip Nemec
panemec
May 21, 2003 5:18 am
It seems that SendMouseMove is multiplying everything by 3 (with Perl 5.8.0 and Windows XP). #!/usr/bin/perl use Win32::GuiTest qw(:ALL); SendMouseMoveAbs(0,...
215
Carner, Philipp W
pcarnerpc210018
May 21, 2003 11:38 am
I am new at this so please bear with me. I am trying to fill in a text box in one application (Remedy) with data from a Perl script. I am having trouble...
216
timhood40
May 23, 2003 4:51 pm
Anybody else having a problem with MenuSelect? I'm using "Win32-GuiTest-1.49.2". For me it works fine on SDI applications such as Notepad and on MDI ...
217
deepakcste
May 27, 2003 11:26 am
Hi, i have a Java Applet window,i wouild like to send Non-Ascii (For Ex: using the keyboard sequence Alt+0181) characters from it using the SendKeys function. ...
218
Rajeev J
jrajeev@...
May 30, 2003 11:38 am
Hi Is there any other way of converting .pl files to .exe other than the PearlApp method in the Activeperl Dev kit. Rajeev...
219
Afshin Bozorgzadeh
afshinbozorg
May 30, 2003 12:50 pm
There is a *perlcc* perl.pl -o perl.exe you could try, or you could buy a copy of perl2exe REgards Afshin...