[U2] [UD] Tab characters in output

2008-09-12 Thread Bill Haskett
Is it just me or does anyone else think this is confounding - the output of the list users command in UniData contains tab characters, which is just another obstacle the engineers give us to program around! 011: Licensed(UDT+CP)/Effective ^009Udt^009Sql^009iPhtm^009Pooled^009^009Total^25 3

RE: [U2] [UD] Tab characters in output

2008-09-12 Thread Dave Laansma
PROTECTED] On Behalf Of Bill Haskett Sent: Friday, September 12, 2008 9:43 AM To: u2-users@listserver.u2ug.org Subject: [U2] [UD] Tab characters in output Is it just me or does anyone else think this is confounding - the output of the list users command in UniData contains tab characters, which is just

Re: [U2] [UD] Tab characters in output

2008-09-12 Thread Wally Terhune
/u2/support Mark your calendar! From: Bill Haskett [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Date: 09/12/2008 08:30 AM Subject: [U2] [UD] Tab characters in output Is it just me or does anyone else think this is confounding - the output of the list users command in UniData contains

RE: [U2] [UD] Tab characters in output

2008-09-12 Thread Colin Alfke
Anyplace you have to parse output is confounding!! I think most of this is in system() variables - but there are some things that don't seem to be... Listuser is also an .exe in the \bin directory. Have you tried parsing that output? It may be more advantageous if you're close to your user

Re: [U2] [UD] Tab characters in output

2008-09-12 Thread Israel, John R.
: [U2] [UD] Tab characters in output I have found the tab character to be extremely effective in delineating columns of information. The simple command: SWAP CHAR(9) WITH @VM IN report-table Instantly changes the report to a usable table in UniBasic. Using any 'printing' character (like

RE: [U2] [UD] Tab characters in output

2008-09-12 Thread jpb-u2ug
@listserver.u2ug.org Subject: [U2] [UD] Tab characters in output Is it just me or does anyone else think this is confounding - the output of the list users command in UniData contains tab characters, which is just another obstacle the engineers give us to program around! 011: Licensed(UDT+CP

RE: [U2] [UD] Tab characters in output

2008-09-12 Thread Bill Haskett
Of Colin Alfke Sent: Friday, September 12, 2008 8:13 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] [UD] Tab characters in output Anyplace you have to parse output is confounding!! I think most of this is in system() variables - but there are some things that don't seem to be... Listuser is also

RE: [U2] [UD] Tab characters in output

2008-09-12 Thread Bill Haskett
Thanks Wally. Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Wally Terhune Sent: Friday, September 12, 2008 7:43 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] [UD] Tab characters in output For what it's worth, the UniBasic LISTUSER

RE: [U2] [UD] Tab characters in output

2008-09-12 Thread Marvin R. Fisher
Instead of complaining we should send them a thank-you note. Sent from my Windows Mobile. phone. -Original Message- From: Bill Haskett [EMAIL PROTECTED] Sent: Friday, September 12, 2008 7:21 AM To: u2-users@listserver.u2ug.org u2-users@listserver.u2ug.org Subject: [U2] [UD] Tab

RE: [U2] [UD] Tab characters in output

2008-09-12 Thread Timothy Snyder
While I'm at it, it would also be nice to dump list/sort output into an array. Not exactly what you're asking for, but you may get some help from the TO DELIM UniQuery keywords to create flat, delimited files that can be read in by your program or by Excel and other applications. I use it

RE: [U2] [UD] Tab characters in output

2008-09-12 Thread Colin Alfke
Thanks. Actually, I do use this one. In fact, I have an enhancement request in that it put CRLF after each line instead of just LF on Windows systems. UDT.OPTIONS 91 always seemed backwards to me. If you're using the LIST syntax you would expect things in converted form - not the other way

RE: [U2] [UD] Tab characters in output

2008-09-12 Thread Colin Alfke
I guess you haven't used Excel 2007. It gives you an error message - although it does still give you the option to open the file. Hth Colin Alfke Calgary, Canada -Original Message- Israel, John R. [snip] The other thing I usually do is save the export with a .xls extension. The

RE: [U2] [UD] Tab characters in output

2008-09-12 Thread Timothy Snyder
UDT.OPTIONS 91 always seemed backwards to me. If you're using the LIST syntax you would expect things in converted form - not the other way around. It's easy enough to create dicts (or even list statements) without conv codes. I agree that it seems backwards. My guess is that, when TO DELIM

RE: [U2] [UD] Tab characters in output

2008-09-12 Thread Tony G
Colin, is this the error you're referring to? The file you are trying to open, '[filename]', is in a different format than specified by the file extension. Verify that the file is not corrupted and is from a trusted source before opening the file. Do you