Re: While loop on a file handle

2003-08-14 Thread Rob Dixon
Sorry guys. There's a keyboard shortcut set up on my PC that sends my current mail that I often hit accidentally. It means I occasionally post half-finished mails. I'll knuckle-down and fix it. This is the post as it should have been: Hi Trevor. Trevor Morrison wrote: > > I am trying to step th

RE: While loop on a file handle

2003-08-14 Thread Jenda Krynicky
From: "Morrison, Trevor (Trevor)" <[EMAIL PROTECTED]> > What I am trying to do is to process a file that has say 1000 orders > in it all pretty much of the same format. I want to open up the file, > and then using a while loop go down through all of the order > one-at-a-time and once I have all th

RE: While loop on a file handle

2003-08-14 Thread Morrison, Trevor (Trevor)
al Message- From: Rob Dixon [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 3:01 PM To: [EMAIL PROTECTED] Subject: Re: While loop on a file handle Sorry guys. There's a keyboard shortcut set up on my PC that sends my current mail that I often hit accidentally. It means I occasionally pos

Re: While loop on a file handle

2003-08-07 Thread Rob Dixon
"Trevor Morrison" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > I am trying to step through each line of a file that contains orders that > were place through a internet shopping cart. I have this code: > > open(ORDER,$order) or die "Error opening \"$order\": $OS_ERROR\n"

RE: While loop on a file handle

2003-08-06 Thread David Wall
--On Wednesday, August 06, 2003 2:50 PM +0200 Jenda Krynicky <[EMAIL PROTECTED]> wrote: From: "Morrison, Trevor (Trevor)" <[EMAIL PROTECTED]> What I am trying to do is to process a file that has say 1000 orders in it all pretty much of the same format. I want to open up the file, and then usin

RE: While loop on a file handle

2003-08-06 Thread Perry, Alan
On Tuesday, August 05, 2003 12:13, Trevor Morrison wrote: > >Hi, > >I am trying to step through each line of a file that contains orders that >were place through a internet shopping cart. I have this code: > > open(ORDER,$order) or die "Error opening \"$order\": $OS_ERROR\n"; > >print "HI\n"; > wh