RE: [U2] wIntegrate keep-alives

2004-07-09 Thread Andy Moore
DISCLAIMER: This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please delete it and notify the sender immediately. Please note that there is no guarantee

[U2] Passing a SELECT ID if it's not in the file...

2004-07-09 Thread George Gallen
I have a paragraph that does... SELECT FILE WITH @ID = TARGET RUN PROGRAM {Program} LOOPS THROUGH READNEXT ID'S IF ID IS IN FILE IGNORE OTHERWISE PUT IN FILE This works fine if TARGET exists in the FILE. How would can I force the TARGET to be in an active select list if it's not in

RE: [U2] Passing a SELECT ID if it's not in the file...

2004-07-09 Thread Les Hewkin
George, Lists are just items held in a file, SAVEDLISTS. Run a program that creates a list for you and then just do a get list. Les. -Original Message- From: George Gallen [mailto:[EMAIL PROTECTED] Sent: 09 July 2004 15:54 To: [EMAIL PROTECTED] Subject: [U2] Passing a SELECT ID if it's

[U2] Gary Canedy/users/Promutualgroup is out of the office.

2004-07-09 Thread gcanedy
I will be out of the office starting 07/09/2004 and will not return until 07/13/2004. Vacation... I will respond to your message when I return. --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] Passing a SELECT ID if it's not in the file...

2004-07-09 Thread Glenn Herbert
I think it would be easier to do: 001 PQN 002 C Prompt for id 003 OEnter ID+ 004 IP %1 005 C Obtain user number 006 S5 007 IH%5:U50BB: 008 C Create list ending with userno 009 HEDIT-LIST UNIQUE.NAME. 010 H%5 011 STON 012 HI 013 H%1 014 H 015 H 016 HFI 017 P 018 C Use list just created 019

RE: [U2] Passing a SELECT ID if it's not in the file...

2004-07-09 Thread Stevenson, Charles
What Brian Leach said. I wrote a MAKE.LIST verb that creates an active select list from the contents of the command line. (I think some versions of Pick have that, maybe by a different name. Can't remember.) The program loads a dynamic array from Brian's Get(ARG.)s, then does FORMLIST. The

[U2] Gary Canedy/users/Promutualgroup is out of the office.

2004-07-09 Thread gcanedy
I will be out of the office starting 07/09/2004 and will not return until 07/13/2004. Vacation... I will respond to your message when I return. --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/

RE: [U2] Cannot see UniOleDB drivers

2004-07-09 Thread alfkec
Hmmm I thought I was able to browse the tables with the ADO tool like I could with the ODBC tool but when I just tried it I couldn't. However, I was able to run select statements without problem (you can cut and paste them from the ODBC tool if you don't know how to create them). I had one

[U2] Why can't a globally cataloged programs have command line arguments?

2004-07-09 Thread George Gallen
ED BP TEST 001: PRINT @SENTENCE 002: PRINT @COMMAND 003: STOP 004: END BASIC BP TEST CATALOG BP *TEST *TEST *TEST *TEST *TEST HELLO (The program doesn't even run..) This is UV10 To put it in MP terms, Are you here for an argument? Yes! Go away then George --- u2-users mailing list

[U2] UniRPC question

2004-07-09 Thread Nick Cipollina
What needs to be in the /etc/hosts file to start the unirpc service. That seems to be the only thing I'm missing to start unirpc. Thanks. Nick Cipollina Pick Programmer Heritage Information Systems, Inc. 2810 North Parham Road, Suite 210 Richmond, VA 23294 (804)644-8707 x 314

RE: [U2] Passing a SELECT ID if it's not in the file...

2004-07-09 Thread Allen E. Elwood \(CA\)
I'm not sure about Universe, but in Unidata the savedlists are 'paged' with each page being about 32k or so. So if you saved a list: SAVE-LIST AEE it would generate the SAVEDLISTS entry of AEE000, AEE001, AEE002, etc. depending on how many records were saved. However it is not necessary to

RE: [U2] Why can't a globally cataloged programs have command line arguments?

2004-07-09 Thread Stevenson, Charles
Oh, joy. It's a stupidity that Prime gave us, Vmark preserved. (don't know about UD.) A line that begins with a * is a comment - if it also has a space in it somwhere after the *.. A line that begins with a * and has no spaces after the * is treated like a globally catalogued program. Note,

RE: [U2] Cannot see UniOleDB drivers

2004-07-09 Thread richpielak
Thanks. Sorry to hear about your conversion from U2. :( Hmmm I thought I was able to browse the tables with the ADO tool like I could with the ODBC tool but when I just tried it I couldn't. However, I was able to run select statements without problem (you can cut and paste them from the

Re: [U2] UniRPC question

2004-07-09 Thread Donald Kibbey
Are you sure your talking about the /etc/hosts file? I think you may need to take a look at the /etc/services file and verify this line is in there somewhere. uvrpc 31438/tcp # uvNet rpc port Hope that helps. btw, need another programmer down there in Richmond?

Re: [U2] Why can't a globally cataloged programs have command line arguments?

2004-07-09 Thread Clifton Oliver
Neither does *TEST spacecr It appears that a space following the verb makes TCL think the entire line is a comment. I don't have access to a rev 9 system at the moment. Can someone else try this on rev 9? -- Regards, Clif On Jul 9, 2004, at 10:37, George Gallen wrote: ED BP TEST 001: PRINT

RE: [U2] UniRPC question

2004-07-09 Thread Wendy Smoak
Nick Cipollina wrote: What needs to be in the /etc/hosts file to start the unirpc service. That seems to be the only thing I'm missing to start unirpc. I don't recall having to add anything special to /etc/hosts to get the RPC to work. Is it not starting, or not answering once it's started?

RE: [U2] wIntegrate keep-alives

2004-07-09 Thread Bill H.
Andy: Thanks. What I've been doing is using AccuTerm. It has keepalives both in it's telnet and ssh. In fact, if it wasn't for wIntegrate's query builder I'd never use it. :-) Thanks, Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Andy Moore

RE: [U2] Why can't a globally cataloged programs have command line arguments?

2004-07-09 Thread Glenn Herbert
Yeah. The specific code is: if(key.len1 *key.text == '*' !STRchr((*cmd),' ')) Its the STRchr that mucks things up, basically saying and no spaces in the command string. Oh bother! At 02:35 PM 7/9/2004, you wrote: Oh, joy. It's a stupidity that Prime gave us, Vmark preserved. (don't know

[U2] U2UG Needs You

2004-07-09 Thread Dana Baron
Greetings, If you're on this e-mail list, you're probably at least vaguely aware of the existence of a nascent U2 users group. And if you're mildly curious, you may be asking yourself, and others, whatever happened to that group. Well there has been a lot going on behind the scenes. We have a

[U2] U2 on HP-Ux + Itanium

2004-07-09 Thread Brutzman, Bill
I am writing to inquire... When is UniVerse [or UniData] expected to be ready on HP-Ux + Itanium ? I like to think that I have been waiting patiently... Please advise. Regards, Bill Brutzman Manager, IT HK MetalCraft Mfg Corp PO Box 775 35 Industrial Road Lodi NJ 07644-0775 973.471.7770

[U2] capturing problem

2004-07-09 Thread John Reid
We've been getting this error in u2 - 10.08 with PICK.FORMAT for quite a while. It happens only on a few applications and very frequently for those applications. The error message is: Unable to create capture file. The error code number is 020291. It runs as a phantom, and so is only spotted if

RE: [U2] UniRPC question

2004-07-09 Thread Nick Cipollina
Thanks for all your help. I found what I was missing. Thanks, Nick Cipollina -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Wendy Smoak Sent: Friday, July 09, 2004 3:06 PM To: [EMAIL PROTECTED] Cc: Nick Cipollina Subject: RE: [U2] UniRPC question

[U2] [OT] list management - somewhat related to keep alives

2004-07-09 Thread Buss, Troy \(Logitek Systems\)
Speaking of keep alives... Is there not a way with this list to filter out ALL messages remotely resembling 'out of office' auto replys? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, July 09, 2004 9:03 AM To: [EMAIL

Re: [U2] Unidata keystroke capture

2004-07-09 Thread Mark Johnson
Not for nuthin' but: A. Why have 2 statements as shown. B. As a programmer with knowledge of CHAR and SEQ, why don't you figure this out for yourself. That's the basis for programming, learning the combinations of commands and statements. Write a loop program and print the value of KEY,

RE: [U2] [OT] list management - somewhat related to keep alives

2004-07-09 Thread Larry Hiscock
The offending user has been unsubscribed. Up until now, we haven't done anything because these haven't been a problem. The IBM email server is smart enough not to continue to send vacation responders to the list with every post (the only other out of office responders I've seen have come from

Re: [U2] Why can't a globally cataloged programs have command linearguments?

2004-07-09 Thread Ray Wurlod
Because any line starting with * and containing a space is a comment. --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] capturing problem

2004-07-09 Thread Ray Wurlod
Where does UVTEMP point? (This is where the capture files are created.) Is this file system full, and/or does the executing user have rxw permission to the UVTEMP directory? --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] Unidata keystroke capture

2004-07-09 Thread FFT2001
In a message dated 7/9/2004 2:02:49 PM Pacific Daylight Time, [EMAIL PROTECTED] writes: I'm trying to determine for my homegrown editor when a keystroke is pressed in Unidata. KEY = IN() KEY.ID=KEY What do I need to do next to make the KEY.ID into a useful value to check?