RE: [U2] UV Version

2006-04-19 Thread Ray Wurlod
uv -admin -version or uv -version in addition to the RELLEVEL that everyone else has mentioned --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] What to do with a HUGE file

2006-04-19 Thread Ray Wurlod
A 64-bit hashed file can - if the operating system permits - be up to about 19 million terabytes. If this is insufficient, you can create a Distributed File containing N of these, where N is an arbitrarily large number. You'll get better I/O throughput by spreading your commonly used files

[U2] Re: UV bug?

2006-04-19 Thread Martin Phillips
I had two attempts at posting this yesterday. Neither seems to have made it to the list. A last try. This is not a bug. When a field with a conversion is used in a WITH or WHEN clause to compare it with a constant, the query processor applies the conversion to the constant in reverse to

[U2] UV Bug?

2006-04-19 Thread David Jordan
This method may not be a bug but it does have undesirable results If Field1 has a value of $10 and is iconv md2 then it is 1000 If Field2 has a value of 1 and is iconv md3 then it is 1000 If you query if field1 = field2 then the answer is yes 10 = 1 The inconsistency is that an SQL statement

[U2] [UD] EnterNew line to continue...

2006-04-19 Thread Bill Haskett
Just out of curiosity, does anyone know why UniData (in Pick mode) displays the message Enter New line to continue... on the next line after the terminal term depth? For instance, if I set the term to 79,25 I expect 25 lines of data to be displayed on the terminal. If I execute LIST VOC HEADING

[U2] U2/OT Scanner Question

2006-04-19 Thread Caminiti, Marc
This is kind of an off topic question. We currently use handheld scanners to scan in a barcode on our packages to ship out an order. The scanner is connected up via a PC to a Digi PortServer. We have had problems in the past with this configuration in that we were losing a character from our

RE: [U2] U2/OT Scanner Question

2006-04-19 Thread George Gallen
Is it possible to put a check digit on the invoice number as it appears in bar code form? This way, if the wrong number were transmitted, the check digit would fail, and you would know it needs to be resent. This way, your transmittal speed doesn't slow down, just occaisionally you may need

Re: [U2] U2/OT Scanner Question

2006-04-19 Thread Charles Barouch
Marc, Symbol has a keyboard wedge (a device that connects scanners to keyboards) that should work with PCs and Macs. You may want to use them just in the few places where the slowdown is hitting you and just attach them to the lowest-end/cheapest PCs you can find. -- Charles Barouch [EMAIL

Re: [U2] U2/OT Scanner Question

2006-04-19 Thread Roger Glenfield
Check with www.systemid.com. Long time dealers in most things barcode. Including interfaces between dumb terminals and barcode scanners. Roger Caminiti, Marc wrote: This is kind of an off topic question. We currently use handheld scanners to scan in a barcode on our packages to ship out an

RE: [U2] U2/OT Scanner Question

2006-04-19 Thread roy
Marc, You could likely configure the scanner with a preamble and postamble to add a special character to both ends of the scanned barcode, and then look for both in your software to verify the scan. Another even better approach would be the use of a check digit if the symbology you are using

[U2] Phantom Question

2006-04-19 Thread kebbon.irwin
RedHat 8 Unidata 6.0 I use PHANTOM to run a proc that starts a program that continuously checks an item looking for work to do. The terminal output from that program is recorded in the como file, but any output sent to the printer does not print until the process is instructed to end. Then

Re: [U2] Phantom Question

2006-04-19 Thread Don Verhagen
Are you closing the printer. The printer is automatically closed once the program ends. PRINTER ON PRINTER OFF PRINTER CLOSE Otherwise it's held in the print buffer until the program ends. Thanks, -- Donald Verhagen Application Development Manager [EMAIL PROTECTED] Tandem Staffing

RE: [U2] Phantom Question

2006-04-19 Thread Bob Woodward
You need to do a PRINTER OFF command to close the print job then a PRINTER ON to start sending the PRINT output to the printer again. BobW -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, April 19, 2006 12:13 PM To:

RE: [U2] Phantom Question

2006-04-19 Thread David A. Green
Are you using a PRINTER CLOSE command? Thanks, David A. Green DAG Consulting -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, April 19, 2006 12:13 PM To: u2-users@listserver.u2ug.org Subject: [U2] Phantom Question

RE: [U2] U2/OT Scanner Question

2006-04-19 Thread u2ug
REPOSTED FOR: Glen Batchelor [EMAIL PROTECTED] If you are using 39 or 3 of 9 symbology, then try changing it to Code 128. We found that some handheld CCD and laser scanners misread code 39 if the bar spacing and bar sizes are not perfectly matched and spaced. Code 128 has yet to fail on me from

[U2] html reporting

2006-04-19 Thread u2ug
REPOSTED FOR NON-MEMBER: J W [EMAIL PROTECTED] To weigh in on HTML reports, we would love use the reports, for features such as scroll bars, however HTML to screen reports display so badly. If only SB reports had scroll bars! I can find very little, if any, documentation on HTML reports, is

[U2] DIM statement flavour variation

2006-04-19 Thread John Kent
It seems Universe information flavour allows DIM ARRAY(Variable) whereas Pick flavour insists on variable being a constant Does anyone have a workaround for the Pick limitation (other than a dynamic array) as there are situations where you dont know the dimensions until run time. jak ---

RE: [U2] DIM statement flavour variation

2006-04-19 Thread Allen E. Elwood
Not that I'm aware of. Wish there was! I guess if you really REALLY wanted to, the first part of the program would figure out how many you need, and then you would literally read the program file, change the statement that needed to be dimensioned, compile the program and the CHAIN to it.

RE: [U2] DIM statement flavour variation

2006-04-19 Thread Tom Dodds
Dim it big, real big Tom Dodds [EMAIL PROTECTED] 513-563-2800 Cincinnati Office 708-234-9608 Chicago Office 630-235-2975 Anywhere Cell -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Kent Sent: Wednesday, April 19, 2006 6:06 PM To: U2Users

RE: [U2] DIM statement flavour variation

2006-04-19 Thread u2
It's not actually the pick flavor that controls variable dimming: it's the STATIC.DIM options that you can turn on or off in any flavor with $OPTIONS STATIC.DIM Or $OPTIONS -STATIC.DIM It's off by default in ideal and information flavors and on by default in Pick. You would use the second format

Re: [U2] DIM statement flavour variation

2006-04-19 Thread John Kent
Ed, just what i was looking for. Does anyone know if the Pick flavour has limitations or variations on globally cataloging ? I have created a local BP file in a Pick flavoured account with a couple of programs, one being a subroutine that when i try to globally catalog complains that

RE: [U2] DIM statement flavour variation

2006-04-19 Thread phil walker
It is a real pain having to reply to all. CATALOG will not globally catalog in a PICK flavour account. What you need to do is get the CATALOG verb from a IDEAL flavour account and copy it to the PICK flavour account with a name of GCATALOG. HTH. -Original Message- From: [EMAIL

RE: [U2] DIM statement flavour variation

2006-04-19 Thread u2
In pick-flavored accounts, you can only catalog locally, and the catalog syntax is only CATALOG FILENAME PROGRAMNAME. Try HELP PICK CATALOG for more info. Note that this gives you different info from HELP CATALOG, which is the ideal version. If you want to globally catalog something, I think you

RE: [U2] DIM statement flavour variation

2006-04-19 Thread u2
Or in the pick account you can copy the voc entry for CATALOG to GCATALOG, and then ED VOC GCATALOG and change attribute 6 from PICK.FORMAT to INFORMATION.FORMAT. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of phil walker Sent: Wednesday, April 19,

Re: [U2] DIM statement flavour variation

2006-04-19 Thread John Kent
Ed, yes if you go to an information account and globally catalog you can access the sub in a Pick flavour. My problem turned out to be the execute string being passed from VB6 to Universe Pick flavour ie LIST VOC WITH F1 LIKE 'F...' 'Q...' AND WITH @ID LIKE '...BP' needs to be LIST VOC

Re: [U2] DIM statement flavour variation

2006-04-19 Thread jig (sent by Nabble.com)
When compiling your program try using this method : BASIC FILE.NAME PROGRAM.NAME -$STATIC.DIM this should work jack -- View this message in context: http://www.nabble.com/DIM-statement-flavour-variation-t1477434.html#a4001220 Sent from the U2 - Users forum at Nabble.com. --- u2-users

RE: [U2] DIM statement flavour variation

2006-04-19 Thread Ray Wurlod
Depending on version, you may need to change the letters in field #4 as well. - Original Message - From: [EMAIL PROTECTED] To: 'phil walker' [EMAIL PROTECTED] Subject: RE: [U2] DIM statement flavour variation Date: Wed, 19 Apr 2006 22:46:24 -0400 Or in the pick account you can