... nimbus3.internetters.co.uk id fA10FXN22309 ... conduit, Homestead cannot monitor user websites, but we respond to breaches of our user agreement when we...
6720
gordonisnz@...
gordonisnz
Nov 1, 2001 9:05 am
Hi there, Ive got one script which copies a file from a CGI sub- directory - into the same directory /pics - But under a different name.. Anyway, im using the...
6721
eventualdeath
Nov 1, 2001 9:41 am
Hello, I need members help on this:- I wish to search a html guestbook for a particular word lets say Jim and if the word Jim is found , to display the records...
6722
gordon stewart
gordonisnz
Nov 1, 2001 9:58 am
... Unfortunately, that's not the problem. Right now NO ONE has moderator access to this, including me, the owner. They screwed up my account royally and I can...
6723
eventualdeath
Nov 1, 2001 10:08 am
I forgot to say that my whole idea was to read the whole file frall.html into one line, then replace horizontal line <hr> with <hr>92;n (horizontal line plus new...
6724
Etienne Marcotte
emarcott@...
Nov 1, 2001 1:13 pm
I'm glad to see it worked. I sent two emails clearly and directly (one to abuse and one to "other" questions. I hope a lot did the same as me, but seems it...
Hello group, Does anyone know why the following line of code: my $lastchar = substr("$ENV{PS1}", length("$ENV{PS1}") - 2); Would properly extract the last 2...
6727
Jeff Eggen
jeggen@...
Nov 1, 2001 1:53 pm
Never mind, I figured it out. The other user wasn't exporting his PS1 variable. Thanks anyhoo for anyone typing a response. Jeff ... Hello group, Does anyone...
6728
Crandell, Daniel (TIF...
dancrandell1
Nov 1, 2001 2:04 pm
Welcome Dan, My name is Dan too, and yes I am a beginner like you. You will find this list very helpful there are alot of great people on here ... From: Eric...
6729
Brandon Brimberry
brimberry_99
Nov 1, 2001 2:21 pm
Hi all Anyone know of a perl script that would will upload a MS word file, convert it to html and then take it and stick it on a webpage somewhere where its...
6730
Cam Coble
tech@...
Nov 1, 2001 2:33 pm
What's wrong with saving the document as html in word, then uploading? This way you can tell what will happen to the document, as converting to html from Word...
6731
petrawolf
petrawolf2409
Nov 1, 2001 2:35 pm
... From: "scott.list" <scott.list@...> To: <perl-beginners@yahoogroups.com> Sent: Thursday, November 01, 2001 2:56 PM Subject: Re: [perl-beginners] 'OLD'...
6732
Oliver Manickum
oliver@...
Nov 1, 2001 2:36 pm
I have done this in vb ... made an exe of the application and use perl to control it.... source code of the vb app is here Dim oWord As New Word.Application ...
6733
Charles K. Clarkson
charlesclarkson
Nov 1, 2001 2:37 pm
... How do you know it didn't work? Did you test it by printing it? use Data::Dumper; print Dumper \@read; chomp @read; print Dumper \@read; You should...
6734
Charles K. Clarkson
charlesclarkson
Nov 1, 2001 2:37 pm
"Jeff Eggen" <jeggen@...> ... Most likely this is because the other user doesn't have a $PS1 environment variable. strict doesn't like undefined...
6735
Etienne Marcotte
emarcott@...
Nov 1, 2001 2:38 pm
what was the purpose of this message? perl-beginner is now owned again so there is no point of having 2 lists Etienne...
6736
petrawolf
petrawolf2409
Nov 1, 2001 3:13 pm
Scott asked if someone could forward his message and so I did. Apparently he has signed of the'old39; list already Petra . ... From: "Etienne Marcotte"...
6737
Jeff Eggen
jeggen@...
Nov 1, 2001 3:13 pm
... Thanks Charles. That was kind of the problem, but it's all figured out now. But, along the same thread, I'm having problems getting a telnet connection...
6738
Etienne Marcotte
emarcott@...
Nov 1, 2001 3:33 pm
I tryed some different things let's say I have sub print{ my $foo = $_[0]; my $bar = $_[1]; print<<END; some text $foo some more text $bar END } If i send 2...
6739
Peter Kirby
kirbtron
Nov 1, 2001 6:56 pm
... I think your best bet is to see if Word's conversion utility can be invoked from the command line and to host your script on a NT machine. That's the only...
6740
Damien Carbery
daymobrew
Nov 1, 2001 7:31 pm
... Shouldn't this line be: print $_; # or just: print; It looks like your script is trying to put a GIF file out as part of HTML output. Instead of the...
6741
Damien Carbery
daymobrew
Nov 1, 2001 7:54 pm
... No way. Here is a way to avoid warnings: sub print( $;$ ) # The '$:$' is optional - it's like a prototype. { my $foo = shift; my $bar = shift; $bar =...
6742
shaileshsp@...
shaileshsp
Nov 1, 2001 8:48 pm
hi, i am quiet a beginner at perl, is there any way i can get a list of all the subdirectories in a folder.I have 4-5 level of folders within folders... when i...
6743
Dan Crandell
dan_c39
Nov 1, 2001 9:16 pm
Can anyone help me out with this file? This file holds info in it but all I want from it is the \www\dan.htm OR if it is a directory \www\DAN\. Bottom Line is...
6744
Jenda@...
jendaperl
Nov 1, 2001 10:07 pm
I'm not able to connect to my server just now (I've been told the link to provider is down, the machine sits under a table in a friends company) so .. sory no...
6745
ericvia@...
ericvia2001
Nov 1, 2001 10:12 pm
Greetings friends! I hope someone can tell me what I'm doing wrong - what I WANT to do is if I find "00150" in a certain position of a file, I want to replace...
6746
Jenda Krynicky
jendaperl
Nov 1, 2001 10:13 pm
From: "eventualdeath" <eventualdeath@...> ... While you could use the .. operator like this : if (grep {$a eq $_} ('a' .. 'z') ) { ... it's...
6747
A. Rivera
eleqtrizit
Nov 1, 2001 10:21 pm
You could break up the line by letters I suppose.. while(<INPUT>) { @letters=split(//, $_); if ($letters[60]==0 && $letters[61]==0 && $letters[62]==1 ..so on...
6748
Peter Lovett
pacqau
Nov 1, 2001 10:33 pm
Thanks. I didn't know about -q. It's very helpful. Peter...