RE: GUI based perl

2009-07-29 Thread mohammed.mustafa
Honestly speaking that takes sometime. But I don't have any idea about the tool 
which help u to avoid that stuff.

Please let me know if someone reply u with that tool and not marking the 
complete list in the TO list.Sometime this the possibility. :-)

Regards,
Mustafa



From: Kprasad [mailto:kpra...@aptaracorp.com]
Sent: Thu 7/30/2009 11:30 AM
To: Mohammed Mustafa (WT01 - PES-Semi-Technology); 
perl-win32-users@listserv.ActiveState.com
Subject: Re: GUI based perl


But it needs lot of coding to draw anything.
Is there any utility where I can make user interface by creating from already 
defined tool bar??

Kanhaiya Prasad

- Original Message -
From: mohammed.must...@wipro.com
To: kpra...@aptaracorp.com ; perl-win32-users@listserv.ActiveState.com
Sent: Thursday, July 30, 2009 11:01 AM
Subject: RE: GUI based perl

Use perl TK utility.


Regards,
Mustafa



From: perl-win32-users-boun...@listserv.activestate.com on behalf of 
Kprasad
Sent: Wed 7/29/2009 9:22 PM
To: perl-win32-users@listserv.ActiveState.com
Subject: GUI based perl


Hi

Please suggest me that what should I use to create interactive GUI for 
running perl script.
There may be button to Browse file and Run particular tool available 
with that interface.

While script is running user can view the progress of that script and 
after completion of execution download button should be available to download 
that file.

Kanhaiya Prasad

Please do not print this email unless it is absolutely necessary.

The information contained in this electronic message and any 
attachments to this message are intended for the exclusive use of the 
addressee(s) and may contain proprietary, confidential or privileged 
information. If you are not the intended recipient, you should not disseminate, 
distribute or copy this e-mail. Please notify the sender immediately and 
destroy all copies of this message and any attachments.

WARNING: Computer viruses can be transmitted via email. The recipient 
should check this email and any attachments for the presence of viruses. The 
company accepts no liability for any damage caused by any virus transmitted by 
this email.

www.wipro.com


Please do not print this email unless it is absolutely necessary. 

The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments. 

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email. 

www.wipro.com
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


RE: GUI based perl

2009-07-29 Thread mohammed.mustafa
Use perl TK utility.


Regards,
Mustafa



From: perl-win32-users-boun...@listserv.activestate.com on behalf of Kprasad
Sent: Wed 7/29/2009 9:22 PM
To: perl-win32-users@listserv.ActiveState.com
Subject: GUI based perl


Hi

Please suggest me that what should I use to create interactive GUI for running 
perl script.
There may be button to Browse file and Run particular tool available with that 
interface.

While script is running user can view the progress of that script and after 
completion of execution download button should be available to download that 
file.

Kanhaiya Prasad

Please do not print this email unless it is absolutely necessary. 

The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments. 

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email. 

www.wipro.com
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


RE: use system() function

2009-05-13 Thread mohammed.mustafa
Hi,

  I have not tried below code,  but I suggest you few more things here,

1) my $cmd = "perl -pi -e 's/aaa/bbb/g' ";# you are are missing g
here.


 I doubht below command is working.
my $command =  $cmd.$file;   ## is concatenation operator required here.

Bit busy now meanwhile try aboove code changes , I hope some good
friends on this forum will solve query if  I won't find time.

 I will check the code, if I find sometime.

--
Regards,
Mustafa




From: Chang Min Jeon [mailto:jcm1...@gmail.com]
Sent: Wednesday, May 13, 2009 2:05 PM
To: Mohammed Mustafa (WT01 - PES-Semi-Technology)
Cc: Perl-Win32-Users@listserv.activestate.com
Subject: Re: use system() function


Hi mustafa

Thank you for your help.

I changed following code but it still doesn't work.

my $cmd = "perl -pi -e's/aaa/bbb/' ";

open(MAKEFILES, '<', $ARGV[0]) or die "file open error";
my @filelist = ;
foreach my $file (@filelist) {
chomp($file);
my $command =  $cmd.$file;
print $command,"\n";
my $result = `$command`;
if($result) {
print "success\n";
} else {
print "failed\n";
}
}
close(MAKEFILES);

./Windowset/Common/Makefile.
gmk
perl -pi -e's/-+g -+dwarf2//' ./Windowset/Common/Makefile.gmk
: No such file or directory.mmon/Makefile.gmk
failed
./Windowset/Special/Makefile.gmk
perl -pi -e's/-+g -+dwarf2//' ./Windowset/Special/Makefile.gmk
: No such file or directory.cial/Makefile.gmk
failed



2009/5/13 


Hi Chang Min Jeon,

Please use back stick operator here, instead of system
command, because system command doesn't return anything.

Replace the system command with,

$Result = `$command`;
If ($Result) {
  Print " appropriate message \n";
} else {
  print " Failed message \n";
}

--
Regards,
Mustafa




From: perl-win32-users-boun...@listserv.activestate.com
[mailto:perl-win32-users-boun...@listserv.activestate.com] On Behalf Of
Chang Min Jeon
Sent: Wednesday, May 13, 2009 5:44 AM
To: Perl-Win32-Users@listserv.ActiveState.com
Subject: use system() function


hello

I trying to modify file using perl one line like below.

my $cmd = "perl -pi -e's/aaa/bbb/' ";

open(MAKEFILES, '<', $ARGV[0]) or die "file open error";
my @filelist = ;
foreach my $file (@filelist) {
chomp($file);
my $command =  $cmd.$file;
print $command,"\n";
!system($command) or die "shell command not work";
}
close(MAKEFILES);

but system function does not work.

It print

./Windowset/Common/Makefile.gmk
perl -pi -e's/-+g -+dwarf2//' ./Windowset/Common/Makefile.gmk
: No such file or directory.mmon/Makefile.gmk
./Windowset/Special/Makefile.gmk
perl -pi -e's/-+g -+dwarf2//' ./Windowset/Special/Makefile.gmk
: No such file or directory.cial/Makefile.gmk

someone who meet this problem?

Thanks in advance
--
CashFlow
To be rich.


Please do not print this email unless it is absolutely
necessary.

The information contained in this electronic message and any
attachments to this message are intended for the exclusive use of the
addressee(s) and may contain proprietary, confidential or privileged
information. If you are not the intended recipient, you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately and destroy all copies of this message and any attachments.

WARNING: Computer viruses can be transmitted via email. The
recipient should check this email and any attachments for the presence
of viruses. The company accepts no liability for any damage caused by
any virus transmitted by this email.

www.wipro.com




--
CashFlow
To be rich.


Please do not print this email unless it is absolutely necessary.

The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments.

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email.

www.wipro.com
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


RE: use system() function

2009-05-12 Thread mohammed.mustafa
Hi Chang Min Jeon,

Please use back stick operator here, instead of system command,
because system command doesn't return anything.

Replace the system command with,

$Result = `$command`;
If ($Result) {
  Print " appropriate message \n";
} else {
  print " Failed message \n";
}

--
Regards,
Mustafa




From: perl-win32-users-boun...@listserv.activestate.com
[mailto:perl-win32-users-boun...@listserv.activestate.com] On Behalf Of
Chang Min Jeon
Sent: Wednesday, May 13, 2009 5:44 AM
To: Perl-Win32-Users@listserv.ActiveState.com
Subject: use system() function


hello

I trying to modify file using perl one line like below.

my $cmd = "perl -pi -e's/aaa/bbb/' ";

open(MAKEFILES, '<', $ARGV[0]) or die "file open error";
my @filelist = ;
foreach my $file (@filelist) {
chomp($file);
my $command =  $cmd.$file;
print $command,"\n";
!system($command) or die "shell command not work";
}
close(MAKEFILES);

but system function does not work.

It print

./Windowset/Common/Makefile.gmk
perl -pi -e's/-+g -+dwarf2//' ./Windowset/Common/Makefile.gmk
: No such file or directory.mmon/Makefile.gmk
./Windowset/Special/Makefile.gmk
perl -pi -e's/-+g -+dwarf2//' ./Windowset/Special/Makefile.gmk
: No such file or directory.cial/Makefile.gmk

someone who meet this problem?

Thanks in advance
--
CashFlow
To be rich.


Please do not print this email unless it is absolutely necessary.

The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments.

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email.

www.wipro.com
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


RE: Perl and XLS operation

2008-11-24 Thread mohammed.mustafa
Thanks a lot Todd, I am working on this, if I get any doubt will get
back to you.
Meanwhile if you or someone have more information about the same, the it
will be a great help.


--
Regards,
Mustafa

-Original Message-
From: Todd Beverly [mailto:[EMAIL PROTECTED] 
Sent: Monday, November 24, 2008 10:09 PM
To: Mohammed Mustafa (WT01 - PES - Semi (Technology))
Cc: perl-win32-users@listserv.ActiveState.com
Subject: Re: Perl and XLS operation

Hello.

[EMAIL PROTECTED] wrote:
> Hi All,
>
>  
>I want to writting a perl script which let me override/edit the
> existing or created XLS.  But I am unable to do that. I am not
> sure, do I have to use few more CPAN module or what .
>

>
>
> Here, at first time I am able to open a XLS and write to that, but
> if I want to do some changes next time, then it is not allowing me
> to do that.
> and getting the follwing error.
>  
> C:\Documents and Settings\x0069183\Desktop\Mustafa>perl hello.pl
> *Can't open perl.xls. It may be in use or protected at hello.pl
> line 13
> (in cleanup) Can't use string ("") as a symbol ref while
> "strict refs" in use at
> C:/Perl/site/lib/Spreadsheet/WriteExcel/Workbook.pm line 295.
> Can't call method "add_worksheet" on an undefined value at
> hello.pl line 16.*
>  
> Here I have used the module spreadsheat::WriteExcel.
>  
>
According to the WriteExcel docs: 
http://search.cpan.org/~jmcnamara/Spreadsheet-WriteExcel-2.25/lib/Spread
sheet/WriteExcel.pm#MODIFYING_AND_REWRITING_EXCEL_FILES
you need to use the Spreadsheet::ParseExcel module is you want to read
and rewrite your XLS file


Please do not print this email unless it is absolutely necessary. 

The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments. 

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email. 

www.wipro.com
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


Perl and XLS operation

2008-11-24 Thread mohammed.mustafa
Hi All,


   I want to writting a perl script which let me override/edit
the existing or created XLS.  But I am unable to do that. I am not sure,
do I have to use few more CPAN module or what . Your help  in this
regard will be
appreciated. Please find the snippet of the code which I have
for the creation of the XL sheet for your kind reference as below.

#!/usr/bin/perl -w


##
#
# Example of how to use the Spreadsheet::WriteExcel
module to create
# an Excel binary file.
#

use strict;
use Spreadsheet::WriteExcel;

# Create a new Excel workbook called perl.xls
my $workbook = Spreadsheet::WriteExcel->new("perl.xls");

# Add some worksheets
my $sheet1 = $workbook->add_worksheet();my $sheet1 =
$workbook->add_worksheet();
  # error comes when I change above line as
below, while editing
  # my $sheet1 =
$workbook->add_worksheet("Derive");

my $sheet2 = $workbook->add_worksheet("Example");

# Add a Format
my $format = $workbook->add_format();
$format->set_bold();
$format->set_size(15);
$format->set_color('blue');
$format->set_align('center');

# Set the width of the first column in Sheet3
$sheet2->set_column(0, 0, 30);

# Set Sheet2 as the active worksheet
$sheet2->activate();

# The general syntax is write($row, $col, $token,
$format)

# Write some formatted text
$sheet2->write(0, 0, "Hello Excel!", $format);

# Write some unformatted text
$sheet2->write(2, 0, "One");
$sheet2->write(3, 0, "Two");

# Write some unformatted numbers
$sheet2->write(4, 0, 3);
$sheet2->write(5, 0, 4.1);

# Write a number formatted as a date
my $date = $workbook->add_format();
$date->set_num_format(' d  h:mm AM/PM');
$sheet2->write(7, 0, 36050.1875, $date);

Here, at first time I am able to open a XLS and write to that,
but if I want to do some changes next time, then it is not allowing me
to do that.
and getting the follwing error.

C:\Documents and Settings\x0069183\Desktop\Mustafa>perl hello.pl

Can't open perl.xls. It may be in use or protected at hello.pl
line 13
(in cleanup) Can't use string ("") as a symbol ref while
"strict refs" in use at
C:/Perl/site/lib/Spreadsheet/WriteExcel/Workbook.pm line 295.
Can't call method "add_worksheet" on an undefined value at
hello.pl line 16.

Here I have used the module spreadsheat::WriteExcel.

Please let me know how to overcome this.



--
Regards,
Mustafa


Please do not print this email unless it is absolutely
necessary.

The information contained in this electronic message and any
attachments to this message are intended for the exclusive use of the
addressee(s) and may contain proprietary, confidential or privileged
information. If you are not the intended recipient, you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately and destroy all copies of this message and any attachments.

WARNING: Computer viruses can be transmitted via email. The
recipient should check this email and any attachments for the presence
of viruses. The company accepts no liability for any damage caused by
any virus transmitted by this email.

www.wipro.com


___
Perl-XML mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs






--
The Wise adapts himself to the world. The Fool adapts the world to
himself. Therefore, all progress depends on the Fool.


Please do not print this email unless it is absolutely necessary. 

The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments. 

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email. 

www.wipro.com
___
Perl-Win32-Users mailin

RE: Shared memory

2008-09-19 Thread mohammed.mustafa
Thanks a lot Brian,

   Is there any mechanism by which we can communicate two exe?
It will be great if we do it through IPC mechanism...

Your help will be a great thing for me.

Thanks,
Mustafa 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Brian Raven
Sent: Friday, September 19, 2008 8:29 PM
To: perl-win32-users@listserv.ActiveState.com
Subject: RE: Shared memory

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: 19 September 2008 15:17
To: perl-win32-users@listserv.ActiveState.com
Subject: Shared memory

> Hi All,
>  
>I am new to the concept of IPC and socket mechanism in perl. I
would like to write a code where I am going 
> to use the OOPs & IPC ( Shared memory) functionality with perl to
achieve the below task.

Sockets don't have a great deal to do with shared memory, other than
that they can both be used for IPC.

>  
>  
>Assume we have a class which is having the data members and
functions (f1,f2... f5).
> Here function1 writes something to the shared memory, and it locks the
same while doing this so that other 
> functions or process should not access the same area.
> Once it is done with that, function2, will access that shared memory
area and perform the required task. 
>  
> I need your help, so that I can achieve this task. Any code snippet
along with links will be a great help.

A good place to start is the documentation for the module(s) that you
will be using, e.g. 'perldoc Win32::MMF::Shareable' (you will probably
need to install it first though, as it isn't part of the standard
distro).

HTH

--
Brian Raven 


---
This e-mail may contain confidential and/or privileged information. If
you are not the intended recipient or have received this e-mail in
error, please advise the sender immediately by reply e-mail and delete
this message and any attachments without retaining a copy. Any
unauthorised copying, disclosure or distribution of the material in this
e-mail is strictly forbidden.


___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Please do not print this email unless it is absolutely necessary. 

The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments. 

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email. 

www.wipro.com
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


Shared memory

2008-09-19 Thread mohammed.mustafa
Hi All,

   I am new to the concept of IPC and socket mechanism in perl. I would
like to write a code where I am going to use the OOPs & IPC ( Shared
memory) functionality with perl to achieve the below task.


   Assume we have a class which is having the data members and
functions (f1,f2... f5).
Here function1 writes something to the shared memory, and it locks the
same while doing this so that other functions or process should not
access the same area.
Once it is done with that, function2, will access that shared memory
area and perform the required task.

I need your help, so that I can achieve this task. Any code snippet
along with links will be a great help.


Thanks,
Mustafa




Please do not print this email unless it is absolutely necessary. 

The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments. 

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email. 

www.wipro.com
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


RE: urgent help : Error while installing Crypt::DES at Windows XP

2008-06-09 Thread mohammed.mustafa
Dear Tobias and All,



  I made sure about the PATH environmental variable as you indicated
here. Then it was asking me for mspdb80.dll (something like this file ),
then I searched that file and used the path of that file in PATH
environmental variable. When I did this I got the below error but enable
to resolve this, so could you please help me to overcome this?





C:\Documents and Settings\mukaa\Mustafa\ssh_files\Crypt-DES-2.05>nmake



Microsoft (R) Program Maintenance Utility   Version 1.50

Copyright (c) Microsoft Corp 1988-94. All rights reserved.



cl -c-nologo -GF -W3 -MD -Zi -DNDEBUG -O1 -DWIN32 -D_CONSOLE
-DNO_ST

RICT -DHAVE_DES_FCRYPT -DUSE_SITECUSTOMIZE -DPRIVLIB_LAST_IN_INC
-DPERL_IMPLICIT

_CONTEXT -DPERL_IMPLICIT_SYS -DUSE_PERLIO -DPERL_MSVCRT_READFIX -MD -Zi
-DNDEBUG

 -O1-DVERSION=\"2.05\"  -DXS_VERSION=\"2.05\"  "-IC:\Perl\lib\CORE"
DES.c

DES.c

C:\Perl\lib\CORE\perl.h(587) : fatal error C1083: Cannot open include
file: 'sys/types.h': No such file or directory

NMAKE : fatal error U1077: 'C:\WINNT\system32\cmd.exe' : return code
'0x2' Stop.





Regards,

Mustafa





From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Tobias Hoellrich
Sent: Friday, June 06, 2008 11:31 PM
To: perl-win32-users@listserv.activestate.com
Subject: RE: urgent help : Error while installing Crypt::DES at Windows
XP



Make sure that the location of "cl.exe" is in your PATH environment
variable. Or better yet: I seem to remember that VC++ installs a start
menu entry that says something like "Open VC++ Command Prompt". That one
will have all the necessary environment additions to run cl.exe
successfully. Use it and then try to nmae Crypt-DES again.



HTH - Tobias







From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Friday, June 06, 2008 9:44 AM
To: perl-win32-users@listserv.activestate.com
Subject: urgent help : Error while installing Crypt::DES at
Windows XP

Hi All,



  Getting error while installing Crypt::DES, I thought it is due
to Microsoft VC++, and I installed it successfully but still I am
getting the below same error.





C:\Documents and
Settings\mukaa\Mustafa\ssh_files\Crypt-DES-2.05>nmake



Microsoft (R) Program Maintenance Utility   Version 1.50

Copyright (c) Microsoft Corp 1988-94. All rights reserved.



cl -c-nologo -GF -W3 -MD -Zi -DNDEBUG -O1 -DWIN32
-D_CONSOLE -DNO_ST

RICT -DHAVE_DES_FCRYPT -DUSE_SITECUSTOMIZE -DPRIVLIB_LAST_IN_INC
-DPERL_IMPLICIT

_CONTEXT -DPERL_IMPLICIT_SYS -DUSE_PERLIO -DPERL_MSVCRT_READFIX
-MD -Zi -DNDEBUG

 -O1-DVERSION=\"2.05\"  -DXS_VERSION=\"2.05\"
"-IC:\Perl\lib\CORE"   DES.c

'cl' is not recognized as an internal or external command,

operable program or batch file.

NMAKE : fatal error U1077: 'C:\WINNT\system32\cmd.exe' : return
code '0x1'

Stop.



Please help me to overcome this issue.



Thanks,

Mustafa




Please do not print this email unless it is absolutely necessary. 

The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments. 

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email. 

www.wipro.com
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


urgent help : Error while installing Crypt::DES at Windows XP

2008-06-06 Thread mohammed.mustafa
Hi All,



  Getting error while installing Crypt::DES, I thought it is due to
Microsoft VC++, and I installed it successfully but still I am getting
the below same error.





C:\Documents and Settings\mukaa\Mustafa\ssh_files\Crypt-DES-2.05>nmake



Microsoft (R) Program Maintenance Utility   Version 1.50

Copyright (c) Microsoft Corp 1988-94. All rights reserved.



cl -c-nologo -GF -W3 -MD -Zi -DNDEBUG -O1 -DWIN32 -D_CONSOLE
-DNO_ST

RICT -DHAVE_DES_FCRYPT -DUSE_SITECUSTOMIZE -DPRIVLIB_LAST_IN_INC
-DPERL_IMPLICIT

_CONTEXT -DPERL_IMPLICIT_SYS -DUSE_PERLIO -DPERL_MSVCRT_READFIX -MD -Zi
-DNDEBUG

 -O1-DVERSION=\"2.05\"  -DXS_VERSION=\"2.05\"  "-IC:\Perl\lib\CORE"
DES.c

'cl' is not recognized as an internal or external command,

operable program or batch file.

NMAKE : fatal error U1077: 'C:\WINNT\system32\cmd.exe' : return code
'0x1'

Stop.



Please help me to overcome this issue.



Thanks,

Mustafa








Please do not print this email unless it is absolutely necessary. 

The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments. 

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email. 

www.wipro.com
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs