Sorry for that Hridyesh. I apologize.
 
I registered with my gmail account to this mailing group and tried sending the 
mail thru my official account. The mail didn't get posted for 3 hours i thought 
just because i am not registered thru this email id thts why its not popped up.
 
So i sent mail to you and chris asking for help & after you posted i saw my 
original mail posted there after 1 hour.
 
Sorry for the inconvenience to everybody there.
 
Thanks 
Manoj
 

________________________________

From: Pant, Hridyesh [mailto:[EMAIL PROTECTED]
Sent: Fri 12/2/2005 10:00 AM
To: Manoj Thakkar, Noida
Cc: beginners@perl.org
Subject: RE: Moving Folder Access denied



Why are you sending same mail to individual, while you are able to send mail to 
the beginners@perl.org

Regards
Hridyesh

-----Original Message-----
From: Manoj Thakkar, Noida [mailto:[EMAIL PROTECTED]
Sent: 01 December 2005 20:42
To: beginners@perl.org
Subject: FW: Moving Folder Access denied


Hi Chris,

Need a favor, Can you please forward the message below to perl mailing list. As 
i dont have access to outside mails here in office so I subscribed mailing list 
to my gmail account and have put an auto forward there to my office email 
account to access it.
But i can not send mails to the group that way :(

Ohh forgot to mention please see if you can help me resolve the issue mentioned 
in mail below. That will be great.

Thanks & Best Regards
Manoj

________________________________

From: Manoj Thakkar, Noida
Sent: Thu 12/1/2005 10:37 AM
To: beginners@perl.org
Subject: Moving Folder Access denied


Hi,

I am trying to move some file form one folder to other . I am able to move the 
file if i do it from the dos prompt but it gives me access denied when i try it 
using Perl.

It seem to me a problem in reading the variable value.

Her is my code

Please suggest ..

use Win32API::File qw ( :ALL );
use strict;
open file, "remove_view_list.txt" or die $!;
while (<file>)
{
# print $_;
my @reg_exp=split(/ /,$_);
#print @reg_exp;
my $view_name=$reg_exp[0];
my $view_date-$reg_exp[1];
my $view_path=$reg_exp[2];
print "view name: $view_name\n";
print "view date: $view_date\n";
print "view path: $view_path\n";  // value of view_path is printed as 
E:\cme_views\view_name1\abc.vws

qx(move $view_path,E:\\cme_views.old);
}

Best Regards
Manoj

________________________________

From: Chris Devers [mailto:[EMAIL PROTECTED]
Sent: Thu 12/1/2005 9:57 AM
To: Pant, Hridyesh
Cc: beginners@perl.org
Subject: Re: Reading xls file



On Wed, 30 Nov 2005, Pant, Hridyesh wrote:

> I want to store column data of xls file in array.
> E.g. $array[0]=1st column of xls sheet.
> $array[1]=2st column of xls sheet.
> $array[2]=3st column of xls sheet.
> ...
> etc....
>
> Can anybody help me...

Probably, I'm sure someone could.

What did your search for Excel-related modules on CPAN turn up?

When you found Spreadsheet::WriteExcel, as I have no doubt that you did,
did you read the documentation for it, and the sample code provided?

When you tried using the module, what happened? Where is your code?

This STILL isn't the "please do my homework for me" list :-)


--
Chris Devers

eD¯!î×/.Z$




Reply via email to