RE: [U2] Question - retrieving file separation setting

2007-09-14 Thread Dan Fitzgerald
MST or UVFile should do it. Date: Thu, 13 Sep 2007 22:59:59 -0400 From: [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Subject: [U2] Question - retrieving file separation setting In a Universe environment, (running either on Windows or *nix), does anyone know a fast way to determine

Re: [U2] Question - retrieving file separation setting

2007-09-14 Thread Allen Egerton
Dan Fitzgerald wrote: MST or UVFile should do it. snip I'm obviously missing something, 'cause I can't find either of those in any of the online HELP files, in my VOC or in a refreshed MAP. Can you enlighten me a bit further please? Thank you. -- Allen Egerton aegerton at pobox dot com

RE: [U2] Question - retrieving file separation setting

2007-09-14 Thread Brian Leach
Allen From memory - Open FileName To FL Then Status FStat From FL Then FileType = FStat21 FileMod = FStat22 FileSep = FStat23 End End You may need to check the numbers (HELP BASIC STATUS) - those are off the top my head. Brian In a Universe environment, (running either on

RE: [U2] Question - retrieving file separation setting

2007-09-14 Thread Manu Fernandes
-Message d'origine- De : [EMAIL PROTECTED] [mailto:owner-u2- [EMAIL PROTECTED] De la part de Allen Egerton Envoyi : vendredi 14 septembre 2007 05:00 @ : .U2 List Objet : [U2] Question - retrieving file separation setting In a Universe environment, (running either on Windows or *nix), does

Re: [U2] Question - retrieving file separation setting

2007-09-14 Thread Allen Egerton
Brian Leach wrote: Allen From memory - Open FileName To FL Then Status FStat From FL Then FileType = FStat21 FileMod = FStat22 FileSep = FStat23 End End You may need to check the numbers (HELP BASIC STATUS) - those are off the top my head. Brian Perfect. Thank you very

Re: [U2] Question - retrieving file separation setting

2007-09-14 Thread Allen Egerton
Manu Fernandes wrote: Use the STATUS stmt FROM filevar OPEN yourfile TO F.DUMMY ELSE EXIT STATUS F.STATUS FROM F.DUMMY ELSE EXIT TYPE = F.STATUS21,1,1 IF TYPE 2 OR TYPE 18 THEN EXIT MODULO= F.STATUS22,1,1 SEPARATOR = F.STATUS23,1,1

[U2] Question - retrieving file separation setting

2007-09-13 Thread Allen Egerton
In a Universe environment, (running either on Windows or *nix), does anyone know a fast way to determine the separation of a file? Type, Modulo, etc are easily returned via the FILEINFO function, but separation doesn't appear to be retrievable that way. Thank you. -- Allen Egerton aegerton