Win32-Printer or alternative help

2006-11-29 Thread The Erithid
I used to use Win32-Printer to print via perl, but i had to format my pc. I tried to reinstall the module, but it is gone from ppm, and when I try to install it using nmake I get the following error: #33 Microsoft (R) Program Maintenance Utility Version 1.50 Copy

Re: delete function

2006-11-29 Thread Mug
Sayed, Irfan (Irfan) wrote: > Hi, > > I have two arrays . one array contains the element which needs to be > deleted from the secound array in which that element is already present. > > > I have tried using delete function but somehow i did not succeed. > > Could somebody please help me on th

Re: delete function

2006-11-29 Thread D. Bolliger
Sayed, Irfan (Irfan) am Mittwoch, 29. November 2006 08:34: > I have two arrays . one array contains the element which needs to be > deleted from the secound array in which that element is already present. > > I have tried using delete function but somehow i did not succeed. Did you check how "som

RE: delete function

2006-11-29 Thread Sayed, Irfan \(Irfan\)
Hi Mug, Thanks for your mail. I have attached my script for your reference. I have updated my script as per your suggesion but still i am not getting proper result. Let me explain you what my script does. I have one array called as @repl which contains some values. I have taken another array

RE: delete function

2006-11-29 Thread Sayed, Irfan \(Irfan\)
Attachment got blocked Sending again _ From: Sayed, Irfan (Irfan) Sent: Wednesday, November 29, 2006 4:35 PM To: 'Mug' Cc: 'beginners@perl.org' Subject: RE: delete function Hi Mug, Thanks for your mail. I have attached my script for your reference. I have updated my script as pe

Re: Commenting Perl code

2006-11-29 Thread Ken Foskey
On Tue, 2006-11-28 at 08:03 -0500, Robert Hicks wrote: > Do you use the regular "#" or inline POD statements? POD describes the programs purpose and how to use it. # comments describe tricky code or coding decisions. -- Ken Foskey FOSS developer -- To unsubscribe, e-mail: [EMAIL PROTECTED] F

Re: Help with WWW::Mechanize

2006-11-29 Thread Rob Dixon
Mathew Snyder wrote: I have a form I'm trying to fill out. One of the fields, despite being named in the HTML source keeps erroring out on me. The HTML source: - Nobody ... The perl code: ... $agent->submit_form( form_number => '3', fields => { "ValueOfStatus"

Re: Problem with replacing string in file

2006-11-29 Thread perl pra
thanks rob and Samstag.. have done it thanks a lot. On 11/25/06, Rob Dixon <[EMAIL PROTECTED]> wrote: Mumia W. wrote: > > On 11/25/2006 06:40 AM, perl pra wrote: >> >> Here is the code i have written... >> [snip] >> >> open $LOGFILE, '<', $file; >> while ($line1 = <$LOGFILE> ) { >>if ($

Re: Help with WWW::Mechanize

2006-11-29 Thread Tom Phoenix
On 11/28/06, Mathew Snyder <[EMAIL PROTECTED]> wrote: I have a form I'm trying to fill out. One of the fields, despite being named in the HTML source keeps erroring out on me. fields => { "ValueOfStatus" => $status, "Value0fActor" => $username,

Re: Help with WWW::Mechanize

2006-11-29 Thread Mathew
Well hot-damn! Ain't that sumthin? I'm going to design a keyboard that puts the zero next to the one. If we don't protect freedom of speech, how will we know who the assholes are? http://theillien.blogspot.com Tom Phoenix wrote: > On 11/28/06, Mathew Snyder <[EMAIL PROTECTED]> wrote: > >> I ha

Re: delete function

2006-11-29 Thread John W. Krahn
Sayed, Irfan (Irfan) wrote: > Hi Mug, Hello, > Thanks for your mail. I have attached my script for your reference. > I have updated my script as per your suggesion but still i am not > getting proper result. > > Let me explain you what my script does. > > I have one array called as @repl whic

How to create a string from value of another variable.

2006-11-29 Thread Ravi Malghan
Hi: I have a variable called $agent_id and want to create a string with the value of $agent_id followed by "-str". The following does not seem to work. The following example I want to create a variable called $35-str. $agent_id = 25; $agent_id."-str" = "This is test\n"; I get the following erro

Re: How to create a string from value of another variable.

2006-11-29 Thread Omega -1911
On 11/29/06, Ravi Malghan <[EMAIL PROTECTED]> wrote: Hi: I have a variable called $agent_id and want to create a string with the value of $agent_id followed by "-str". The following does not seem to work. The following example I want to create a variable called $35-str. $agent_id = 25; $agent_i

Re: How to create a string from value of another variable.

2006-11-29 Thread Paul Johnson
On Wed, Nov 29, 2006 at 01:37:29PM -0800, Ravi Malghan wrote: > Hi: I have a variable called $agent_id and want to create a string with the > value of $agent_id followed by "-str". The following does not seem to work. > The following example I want to create a variable called $35-str. > > $agent

Re: How to create a string from value of another variable.

2006-11-29 Thread John W. Krahn
Ravi Malghan wrote: > Hi: Hello, > I have a variable called $agent_id and want to create a string with the > value of $agent_id followed by "-str". The following does not seem to work. > The following example I want to create a variable called $35-str. Numerical variable names are reserved for