Re: [U2] Count tab characters

2009-10-27 Thread iggchamp
No sign of a -o option.  Thanks for the reply Ben. - Original Message - From: Ben Souther bsout...@fwdco.com To: U2 Users List u2-users@listserver.u2ug.org Sent: Monday, October 26, 2009 7:08:30 PM GMT -06:00 US/Canada Central Subject: Re: [U2] Count tab characters Check your

Re: [U2] Count tab characters

2009-10-27 Thread iggchamp
Something about that wasn't liked on my system.  Returned 0 when there are 784 in myfile.  - Original Message - From: Larry Hiscock lar...@wcs-corp.com To: U2 Users List u2-users@listserver.u2ug.org Sent: Monday, October 26, 2009 7:02:07 PM GMT -06:00 US/Canada Central Subject:

Re: [U2] Count tab characters

2009-10-27 Thread iggchamp
And we have a winner.  Thanks for the help. I'm sure Larry's option would work great too - I probably just typed something wrong. - Original Message - From: Stuart Boydell stuart.boyd...@spotless.com.au To: U2 Users List u2-users@listserver.u2ug.org Sent: Monday, October 26,

Re: [U2] Count tab characters

2009-10-27 Thread Charles_Shaffer
Nice! tr -d '\n' myfile | sed 's/[^\t]//g' | wc -c Charles Shaffer Senior Analyst NTN-Bower Corporation ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinfo/u2-users

Re: [U2] Uniobjects licence

2009-10-27 Thread Doug
UniObjects will be licensed during the grace period as well. Regards, Doug www.u2logic.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Symeon Breen Sent: Monday, October 26, 2009 2:58 PM To: 'U2 Users List'

Re: [U2] UV Call Stack

2009-10-27 Thread Bessel, Karen
Yes, I got that from Brian Leach as well. Thanks so much! Karen Bessel Software Developer Tyler Technologies, Inc. 6500 International Parkway, Suite 2000 Plano, TX 75093 Phone: 972.713.3770 ext:6227 Fax: 972.713.3780 Email: karen.bes...@tylertech.com Web: http://www.tylertech.com

Re: [U2] Count tab characters

2009-10-27 Thread Colin Jennings
Yes, sometimes it seems as though the meek may indeed inherit the world - and then something like this comes along and you realise that the average Joe will simply never understand... :-) Nice! tr -d '\n' myfile | sed 's/[^\t]//g' | wc -c ___

[U2] Retrieving Unix Date and Time stamp on records in a DIR type file

2009-10-27 Thread Dave Laansma
Given any DIR type file, as defined in the VOC file. When I read a 'record' from that type of file, which is of course actually a file in a directory in Unix, how may I establish what the Unix date and time stamps are on that record/file within Unidata? I am interested specifically in

Re: [U2] Retrieving Unix Date and Time stamp on records in a DIR type file

2009-10-27 Thread Colin Alfke
See: http://www.pickwiki.com/cgi-bin/wiki.pl?GetOsInfo Hth Colin Alfke Calgary, Canada -Original Message- From: Dave Laansma Given any DIR type file, as defined in the VOC file. When I read a 'record' from that type of file, which is of course actually a file in a directory in Unix,

[U2] AccuTerm Multi-line ENTER key action

2009-10-27 Thread Robert Porter
Working on a new GUI dialog box with a multi-line text entry field, and I'd like the enter key to simply move to the next line and not activate the default action button... The help file reads: Normal- the Enter key adds lines to multiline edit controls, actuates (clicks) an active command

Re: [U2] Re trieving Unix Date and Time stamp on records in a DIR type file

2009-10-27 Thread closebutnocigar
You could use EXECUTE ! stat ./BP/PROG1 CAPTURING OUT and parse out the bits you are interested in. This will show date/time of the most recent access, modification and change -- View this message in context:

Re: [U2] AccuTerm Multi-line ENTER key action

2009-10-27 Thread Robert Porter
Nevermind... I decided to move on to another issue, and after I made the change I noticed it wasn't picking it up either. I had 2 copies of the template out there and was changing the 'other' one. The other still had the button style as 'OK' and not normal. Thanks, Rob Robert F. Porter,

Re: [U2] Re trieving Unix Date and Time stamp on records in a DIR type file

2009-10-27 Thread Doug Farmer
Use the DIR command on the file. Get the path of the file, append the appropriate \ or /, then do a DIR. For example, on a Unix machine: ITEM.ID = 'TEST' OPEN '','BP' TO BP THEN FILE.PATH = FILEINFO(BP,2) ITEM.PATH = FILE.PATH:'/':ITEM.ID ITEM.DATE =

[U2] uniObjects and PAM

2009-10-27 Thread bradley . schrag
Our security people are trying to migrate us off AIX security to Active Directory. They're using PAM / LDAP. They converted one of our developers and he now gets an invalid id/password error when trying to connect to an account using UniObjects. This happens in mvDeveloper and a couple

Re: [U2] uniObjects and PAM

2009-10-27 Thread Wally Terhune
PAM support for UO is provided at UniData 7.2.0. From the New Features Guide: UniData 7.2 supports the PAM framework for the following products: „UniObjects „UniObjects for Java „UniObjects for .NET „InterCall „IBM JDBC Driver for UniData and UniVerse „UniData ODBC „UniOLEDB Wally Terhune U2

Re: [U2] Re trieving Unix Date and Time stamp on records in a DIRtype file

2009-10-27 Thread Dave Laansma
Perfect. Thank you! David Laansma IT Manager Hubbard Supply Co. Direct: 810-342-7143 Office: 810-234-8681 Fax: 810-234-6142 www.hubbardsupply.com Delivering Products, Services and Innovative Solutions -Original Message- From: u2-users-boun...@listserver.u2ug.org

Re: [U2] uniObjects and PAM

2009-10-27 Thread bradley . schrag
Thanks for the quick reply, Wally. PAM support for UO is provided at UniData 7.2.0. U.S. BANCORP made the following annotations - Electronic Privacy Notice. This e-mail, and any attachments, contains information that is, or

Re: [U2] AccuTerm Multi-line ENTER key action

2009-10-27 Thread Bill Haskett
Robert: I have a BASIC program that builds an AccuTerm input box and allows data entry. I call this program from my normal programs. If you're still interested I can post the AccuTerm program and the call to it. Bill

Re: [U2] Count tab characters

2009-10-27 Thread Bill Haskett
Colin: You know what they say... In Linux the easy is hard but the hard is possible. In Windows the easy is easy and the hard is $99.95.:-) Bill Colin Jennings said the following on 10/27/2009 6:01 AM: Yes,

Re: [U2] AccuTerm Multi-line ENTER key action

2009-10-27 Thread Robert Porter
Yes please... Thanks, Rob Bill Haskett wphask...@advantos.net 10/27/2009 1:07 PM Robert: I have a BASIC program that builds an AccuTerm input box and allows data entry. I call this program from my normal programs. If you're still interested I can post the AccuTerm program and the call