RE: Windows Perl Editors?

2001-02-15 Thread william . meitzen
I've used HomeSite for the past 3 years.  I love it. -Original Message-From: Ewan Grantham [mailto:[EMAIL PROTECTED]]Sent: Thursday, February 15, 2001 7:42 AMTo: [EMAIL PROTECTED]Subject: Windows Perl Editors? OK, while Visual Perl looks like it will be nice, someday, I

RE: Activeperl: trouble with GD and TTF support

2001-02-15 Thread Wang, Pin-Chieh
Hi Anthony, I also have problem running GD::Graph under ActivePerl 623 running under both window 2000 and NT4, Strangely it seems working if I run under perl debug mode. With older perl everything just worked. My guess is the problem comes from versions of Perl than from NT PC Wang -Origina

Windows Perl Editors?

2001-02-15 Thread Ewan Grantham
OK, while Visual Perl looks like it will be nice, someday, I could use a good editor right now. A quick search turned up a couple of editors, but they seem to emphasize creating/testing CGI scripts, and that's not how we're using Perl. So does anyone have a suggested editor that is Perl

RE: conversion

2001-02-15 Thread RALPH
Is this what you are looking for? $line = "Is there a way to find the ASCII value of a character in perl, so that I can ouput the ASCII code and the character in the following code?"; @chars=split('',$line); foreach $ch (@chars) { $c = ord $ch; print "$ch, $c\n"; } Ralph

RE: Outta my tree!

2001-02-15 Thread Goodier, Colin R
>What am I missing (this time)? Have you told the webserver it is executable, using the Internet Service Manager console? Colin > -Original Message- > From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] > Sent: 15 February 2001 02:58 > To: Grant McLean; [EMAIL PROTECTED] > Subject:

Ejecting a CDROM

2001-02-15 Thread brianr
Parry Troy writes: > Does anyone know how to eject a CDROM from a perl script (Win32)? > Im trying to do it through Win32API::File. > DeviceIoControl( $hDevice, $uIoControlCode, $pInBuf, $lInBuf, $opOutBuf, > $lOutBuf, $olRetBytes, $pOverlapped ); > > $hDevice is supposed to be a Win32 nati

Re: conversion

2001-02-15 Thread Jörg Plate
> the transliteration (tr) code took: 0 wallclock secs ( 0.11 usr + 0.00 sys = 0.11 CPU) > the lowercase (lc) code took: 1 wallclock secs ( 0.98 usr + 0.00 sys = 0.98 CPU) Sorry, but I won't trust any benchmark which doesn't run for at least 30 seconds (for each part) > $foo =~ tr/[A-Z]/[a-z]

Activeperl: trouble with GD and TTF support

2001-02-15 Thread Anthony Dyson
We are experiencing a strange problem with GD, since updating our machines to Windows 2000 and the newest available perl build and module versions. We have a script which produces a few hundred graph images using GD::Graph, and a few hundred related images using GD directly. Under our old Active

RE: ASCII value of a characater

2001-02-15 Thread Grant McLean
> Is there a way to find the ASCII value of a character ord() ___ ActivePerl mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/activeperl

RE: Outta my tree!

2001-02-15 Thread Grant McLean
> Now I get a more familiar error: > > "HTTP Error 403 > 403.1 Forbidden: Execute Access Forbidden > > This error can be caused if you try to execute a CGI, ISAPI, or other > executable program from a directory that does not allow programs to be > executed." > > However, the directory that my s

ASCII value of a characater

2001-02-15 Thread Roy . Waldock
Dear All, Is there a way to find the ASCII value of a character in perl, so that I can ouput the ASCII code and the character in the following code? @chars=split('',$line); foreach $ch (@chars) { print "$ch "; } Thanks Roy ___ Activ