Re: [U2] Writeseq - getting to the EOF

2010-03-25 Thread John Woollam
-boun...@listserver.u2ug.org] On Behalf Of Don Robinson Sent: 24 March 2010 23:43 To: U2 Users List Subject: Re: [U2] Writeseq - getting to the EOF George, Have you tried the SEEK statement, ie, SEEK filehandle, 0 , 2 The 0 (zero) is the offset and the 2 is relative to the end of the file

[U2] Writeseq - getting to the EOF

2010-03-24 Thread George Gallen
ok. UV 10.0.2 Is there a quick way to get to the end of a file to start appending after an OPENSEQ Otherthan, a loop to READSEQ until it hits the EOF. Right now, that is not a problem, but this file could grow to some considerable size, and that loop might take a little bit to cycle through.

Re: [U2] Writeseq - getting to the EOF

2010-03-24 Thread David Ward
Try SEEK -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of George Gallen Sent: Wednesday, March 24, 2010 4:26 PM To: U2 Users List Subject: [U2] Writeseq - getting to the EOF ok. UV 10.0.2 Is there a quick way

Re: [U2] Writeseq - getting to the EOF

2010-03-24 Thread George Gallen
thanksworked. SEEK filehandle,0,2 -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users- boun...@listserver.u2ug.org] On Behalf Of David Ward Sent: Wednesday, March 24, 2010 5:30 PM To: 'U2 Users List' Subject: Re: [U2] Writeseq - getting to the EOF

Re: [U2] Writeseq - getting to the EOF

2010-03-24 Thread David A. Green
Subject: [U2] Writeseq - getting to the EOF ok. UV 10.0.2 Is there a quick way to get to the end of a file to start appending after an OPENSEQ Otherthan, a loop to READSEQ until it hits the EOF. Right now, that is not a problem, but this file could grow to some considerable size, and that loop might

Re: [U2] Writeseq - getting to the EOF

2010-03-24 Thread Don Robinson
u2-users@listserver.u2ug.org Sent: Wed, March 24, 2010 5:25:31 PM Subject: [U2] Writeseq - getting to the EOF ok. UV 10.0.2 Is there a quick way to get to the end of a file to start appending after an OPENSEQ Otherthan, a loop to READSEQ until it hits the EOF. Right now, that is not a problem