Re: [U2] Dynamic Concepts Unibasic ... Is this Pick ?

2014-04-24 Thread larryh
No, this company has their own product (unibasic) which is a derivative of the old Iris/Point4 Business Basic. Completely different animal. Larry Hiscock Western Computer Services http://www.dynamic.com/software/unibasic/ This company confuses me. Is this the same UniBASIC ? They are

Re: [U2] Left Outer Join Question

2014-03-03 Thread larryh
Works for me under UV 10.2.7 (PIOPEN flavor) on AIX: SELECT GCRS01007.BP TO 1 74 record(s) selected to SELECT list #1. SELECT LGH.BP TO 2 176 record(s) selected to SELECT list #2. MERGE.LIST 1 INTERSECT 2 TO 3 20 record(s) selected to SELECT list #3. Larry Hiscock Western Computer Services

Re: [U2] Logging program execution in Unidata?

2014-01-06 Thread larryh
MAKE.MAP.FILE We catalog all our programs - locally (so they end up in CTLG in the current account) for programs specific to a particular account, as well as globally (so there is a pointer in CTLGTB) for generic programs. Unfortunately, unidata seems to have _MAP_ file in

Re: [U2] Ref: Web Services at Universe 11.n

2013-11-01 Thread larryh
Using the SOAP and/or HTTP commands from within Basic. --Larry Larry Hiscock Western Computer Services This is using the SOAP commands from within BASIC? Or some other way? -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org]

Re: [U2] No mail

2013-09-23 Thread larryh
AOL is notorious for blocking email at random for no apparent reason... Will, It appears to be a low-traffic week. As f (Allen - Sent from my paperweight) On Sep 23, 2013, at 6:31 PM, Will Johnson wjhon...@aol.com wrote: Huh? I'm responding by GOING to the U2 Archives forum. Not

Re: [U2] List Changes?

2013-07-25 Thread larryh
Hi Bill, This made it to the list, and was delivered. Did you get a copy of it? --Larry Larry Hiscock Moderator Larry: 1. Thanks for writing. 2. We started to use Goole Mail a few months ago. 3. I only see inbound filtration settings. 4. While I also use Outlook 2013... a lot of

Re: [U2] Compressing PDFs

2013-03-28 Thread larryh
I use 7zip extensively on linux and windows. With RedHat / CentOS it's simply an rpm or yum install, and it works great. It might be a little more challenging to find HP-UX binaries. You could always download the source and compile it yourself, I guess... Larry Hiscock Western Computer

Re: [U2] Turn pagination back on

2013-02-07 Thread larryh
BPIOCP (UD) CALL !BPIOCP (UV) Larry Hiscock Western Computer Services Someone remind me, how to do this. If pagination has been turned off, and for my embedded routine, I want to turn it back on again. How do I do this? I've tried HEADING, and PAGE, and CRT @(0,0) I know there's a trick

Re: [U2] Stripping line breaks from InfoTrieve output

2012-12-13 Thread larryh
You should be able to shorten the tr and save a pipe ... tr -d ['\r\n'] brad.txt brad2.txt Larry Hiscock Western Computer Services Thanks for the ideas. dd scared me. Lots of warnings about destroying your hard drive. =:O I figured it out with tr. There might be a way to do it in one

Re: [U2] Wally Terhune

2012-12-13 Thread larryh
Congrats Wally! Larry Hiscock Western Computer Services Congratulations on your upcoming retirement. Thanks for all the support you have given us over the years for us Unidata guys. Your breadth of knowledge will surely be missed. Enjoy retirement, -Dan Dan Goble | Senior Systems

Re: [U2] Advantage of indirect call in BASIC

2012-12-03 Thread larryh
I've worked on a system that uses this approach. A bunch of variables are defined in the startup program called by the LOGIN paragraph, and stored in named common. The idea behind it was to centralize in the event that the called program ever needed to be changed. Larry Hiscock Western Computer

Re: [U2] U2UG

2012-08-29 Thread larryh
The link that I see is bo...@u2ug.net, not .org. The U2UG website is hosted on u2ug.net (and forwarded there from u2ug.org). The u2ug.org domain hosts the mailing list. Larry Hiscock Moderator Whois, is your friend http://www.ip-adress.com/whois/u2ug.org -Original Message-

Re: [U2] [ud] Sub-second delay?

2012-08-27 Thread larryh
RQM is still supported by UniData, but it's now merely a synonym for SLEEP. NAP is a UV thing, with millisecond granularity. SLEEP, in both UV and UD, like the *nix sleep command, only counts in whole seconds. Larry Hiscock Western Computer Services RQM was supposed to be merely a command to

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 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] CSV to Array

2012-08-15 Thread larryh
This thread is CLOSED. Take it offline. Larry Hiscock Moderator No one is forcing you to respond Phil. I posted some interesting code and asked for comments. The comments so far are just uncalled for abuse. You should be banned from this list. -Original Message- From: Phil

Re: [U2] UV 10.2 Data encryption/ Unidata Soon?

2006-09-29 Thread larryh
Don, In the meantime, if you need secure encryption for SSN or Credit Card numbers in Unidata NOW, I have an RC4 encryption algorithm in UniBasic that is pretty easy to implement. Since RC4 can generate characters all across the ASCII spectrum, I also have a base64 encode/decode routine so the