Re: [U2] SB.SMART.QUERY

2012-08-20 Thread Dave Davis
You need to go to AdminSB+ SetupSB+ Configuration PatternsF5-System Defaults and set the SB+ Subroutines in Dictionaries field to Y After that you would need to regenerate the dictionary entries so that the default ERROR i-type gets replaced with an i-type that uses the SB.SMART.QUERY

[U2] XLr8Editor supports Off Line Editing [ad]

2012-08-20 Thread Doug Averch
We have just released the our flag ship product called XLr8Editor version 3.5.8. We have always allowed editing of U2 UniBasic code in offline mode so that if you were at the hotel or on a plane you could change the code and sync up later. However, several of our clients wanted to use the same

Re: [U2] Mysterious UV Error

2012-08-20 Thread Jeff Fitzgerald
Rick, Your response was spot on - the site does use device licensing and it appears uv is outputting some characters that result in the error. Using uvsh seems to be a viable workaround. Thanks all for the help! it's much appreciated! Jeff Fitzgerald Fitzgerald Long, Inc. www.fitzlong.com

[U2] Sockets programming on Unidata

2012-08-20 Thread Rutherford, Marc
Unidata 7.1.8 HP-UX 11.11i I am attempting my first sockets programming project. It appears that 'initServerSocket' and 'openSocket' are working OK. 'getSocketInformation' returns info. But 'acceptConnection' only seems to timeout, yet it returns a RESULT of '0' (no error). The

[U2] Virtualizing a Universe server of 100+ users

2012-08-20 Thread Eric Armstrong
Has anyone virtualized a Universe server of 100+ users, and if so, could you share how it went? Eric Armstrong Programmer/Analyst Lobel Financial LOBEL FINANCIAL PRIVACY NOTICE: This communication may contain confidential company information that is protected by federal law. Federal

Re: [U2] Sockets programming on Unidata

2012-08-20 Thread larryh
Are you the client or the server? acceptConnection is only used by the server to accept incoming socket connection requests. If you're trying to communicate as a client to a remote server, you won't use acceptConnection, you'll just open the socket, write the request, read the response, and

Re: [U2] Sockets programming on Unidata

2012-08-20 Thread Rutherford, Marc
Got it, I am the client - so the 'init' and 'accept' not applicable. So I should both 'write' and 'read' using the same SocketHandle? Marc Rutherford Principal Programmer Analyst Advanced Bionics LLC 661) 362 1754 -Original Message- From: u2-users-boun...@listserver.u2ug.org

Re: [U2] Sockets programming on Unidata

2012-08-20 Thread larryh
Yes, the same SocketHandle that openSocket returns. Larry Hiscock Western Computer Services Santa Clarita, CA Got it, I am the client - so the 'init' and 'accept' not applicable. So I should both 'write' and 'read' using the same SocketHandle? Marc Rutherford Principal Programmer Analyst

Re: [U2] Sockets programming on Unidata

2012-08-20 Thread Rutherford, Marc
Works like a charm, Thanks Larry. Marc Rutherford Principal Programmer Analyst Advanced Bionics LLC 661) 362 1754 -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of lar...@wcs-corp.com Sent: Monday, August 20, 2012

Re: [U2] Mysterious UV Error

2012-08-20 Thread Phil Walker
Jeff, My understanding from when I worked at VMARK, long ago, is that you should be using uvsh rather than uv anyway. Cannot remember the reason why but there was a reason back then anyway (1992-1995). Phil -Original Message- From: u2-users-boun...@listserver.u2ug.org

Re: [U2] Sort the LISTU output

2012-08-20 Thread Wjhonson
http://www.pickwiki.com/cgi-bin/wiki.pl?WLISTU If more people would use the Pickwiki, we wouldn't need to each reinvent the wheel -Original Message- From: Wjhonson wjhon...@aol.com To: u2-users u2-users@listserver.u2ug.org Sent: Fri, Aug 17, 2012 7:28 pm Subject: Re: [U2] Sort the

Re: [U2] CSV to Array

2012-08-20 Thread Keith Johnson [DATACOM]
No-one seems to have done it, but here's my version of the code. It's strange, I don't have a problem with CONTINUE and I don't even mind IF SOMETHING ELSE THIS = THAT which a lot of people really hate, but I just HAD to reverse the IF/CASE statement order. SUBROUTINE REXY(RECORD,TEXT)