[U2] Printing OCR-A on HP printers in UV

2012-08-27 Thread Mark Waldron
Is there a way to print OCR-A fonts on HP printers without purchasing a $250.00 DIMM card that inserts into every printer. It's not an built in font on my printers. This would be within a Universe basic program. Running UV 10.2.3 on a virtual Windows 2003 Server. Thanks in advance. Mark

Re: [U2] Printing OCR-A on HP printers in UV

2012-08-27 Thread Robert Porter
I bet Print Wizard from Rasmussen could do this... Then you're talking about 1 server side piece of software and at most 1 soft-font purchase if needed. Plus you'd gain: email, pdf, forms, etc... Robert F. Porter, MCSE, CCNA, ZCE, OCP-Java Lead Sr. Programmer / Analyst Laboratory Information

[U2] XLr8Resizer can save stats as a csv file (Version 3.5.9) [ad]

2012-08-27 Thread Doug Averch
We are please to announce that you can save off your statistics that XLr8Resizer gathers for you in a CSV file. This allows you to use other graphing tools besides the one's supplied by U2Logic in XLr8Resizer. A sample file looks like this for Universe: # XLr8Resizer Statistics

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

2012-08-27 Thread David L. Wasylenko
NAP 500 ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Kevin King Sent: Monday, August 27, 2012 10:46 AM To: U2

Re: [U2] Printing OCR-A on HP printers in UV

2012-08-27 Thread Bob Rasmussen
Indeed Print Wizard can handle this task. It allows you to print with ANY Windows-installed font, on any Windows-supported printer. You can call for the font using our markup language, PWML, or you can use PCL -- Print Wizard recognizes those escape codes, including the ones in the barcode/OCR

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

2012-08-27 Thread Kevin King
Ah crap, this client is Unidata 6.1 and NAP is not supported. I'm not seeing it in the 7.1 or 7.2 docs either. Looks to be a UV thing, right? On Mon, Aug 27, 2012 at 9:41 AM, David L. Wasylenko d...@pickpro.com wrote: NAP 500 ... david ... David L. Wasylenko President, Pick

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

2012-08-27 Thread Wjhonson
RQM was supposed to be merely a command to release quantuum which means to pause until I come back up in the time-slicing round-robin. At some point I wonder if they didn't just replace this with a Sleep 1 but that's not really what it was *supposed* to be. You could try a single RQM and

Re: [U2] Variable Interpolation

2012-08-27 Thread David L. Wasylenko
Or... 0001 VERB=TRY ;* Or whatever you called this program 0002 SENT=@SENTENCE 0003 PTR=INDEX(SENT,VERB,1) ; LLEN=LEN(SENT)-PTR-LEN(VERB) 0004 SENT=SENT[PTR+LEN(VERB)+1,LLEN] 0005 * 0006 F.FILE=FIELD(SENT, ,1) ; LLEN =LLEN-LEN(F.FILE)-1 0007

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

2012-08-27 Thread Rutherford, Marc
While OT to your question, I miss the true RQM (release quantum) from the OS days. A nice way to make a resource-hungry program more courteous to other users. Marc Rutherford Principal Programmer Analyst Advanced Bionics LLC 661) 362 1754 -Original Message- From:

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

2012-08-27 Thread David L. Wasylenko
SLEEP 1 and NAP xxx will do the same... I've had processes hogging resources... added NAP 1 and it played very nicely with the system afterward. ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From:

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] [ud] Sub-second delay?

2012-08-27 Thread David L. Wasylenko
Universe only supports an integer for the SLEEP command... Try this in unidata: 001 CRT TIMEDATE() 002 FOR I=1 TO 5 003 SLEEP 0.5 004 NEXT I 005 CRT TIMEDATE() I've no idea if it's supported... but it's worth a shot to test. ... david ... David L. Wasylenko President, Pick Professionals,

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

2012-08-27 Thread Wjhonson
How interesting. RQM isn't even in the online help for Universe 10, but it does compile. -Original Message- From: David L. Wasylenko d...@pickpro.com To: U2 Users List u2-users@listserver.u2ug.org Sent: Mon, Aug 27, 2012 9:41 am Subject: Re: [U2] [ud] Sub-second delay? Universe only

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

2012-08-27 Thread David L. Wasylenko
If you are trying to unload a heavy processs... how about sleeping one second every 100 records or every 1000 ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org

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

2012-08-27 Thread Kevin King
Thanks everyone. David, good idea. The original premise was to try to keep a Unidata program from overflowing the AIX spooler, which has a max job # of 999. We were hitting it with a couple thousand documents daily (within a few minutes) and the premise was that if I had a job 615 in the

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

2012-08-27 Thread Marco Antonio Rojas Castro
H = SYSTEM(12) ;* TIME IN MILISECONDS LOOP H2 = SYSTEM(12) IF H2 - H 500 THEN EXIT ;* 500 MS ELAPSED REPEAT Date: Mon, 27 Aug 2012 10:17:01 -0600 From: ke...@precisonline.com To: u2-users@listserver.u2ug.org Subject: Re: [U2] [ud] Sub-second delay? Ah crap, this client is

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

2012-08-27 Thread David L. Wasylenko
You will get a delay... but you won't reduce work-load. In fact, a tight loop like that will take over and make system performance crawl. ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From:

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

2012-08-27 Thread Kevin King
That's a pretty tight loop Marco. I agree with David, these kinds of tight loops can really negatively impact performance. On Mon, Aug 27, 2012 at 10:59 AM, Marco Antonio Rojas Castro marco_roja...@hotmail.com wrote: H = SYSTEM(12) ;* TIME IN MILISECONDS LOOP H2 = SYSTEM(12) IF H2 -

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

2012-08-27 Thread Wjhonson
O talk about bringing a system to its knees :) -Original Message- From: Marco Antonio Rojas Castro marco_roja...@hotmail.com To: u2-users u2-users@listserver.u2ug.org Sent: Mon, Aug 27, 2012 9:59 am Subject: Re: [U2] [ud] Sub-second delay? H = SYSTEM(12) ;* TIME IN MILISECONDS

Re: [U2] Variable Interpolation

2012-08-27 Thread John Thompson
I'm interpolating that the original poster may have not had a chance to respond back at this point... Sorry, I couldn't resist :) I would imagine that the original poster comes from another language like some previous folks have said. On Mon, Aug 27, 2012 at 12:15 PM, David L. Wasylenko

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

2012-08-27 Thread Oaks, Harold
In Universe Basic, the !SLEEP$ routine accepts milliseconds as a parameter. For example: CALL !SLEEP$(200) sleeps for 200 milliseconds (2/10 of a second). Of course it takes a little time for the routine to start up, so you won't sleep exactly 1 millisecond if you try !SLEEP$(1). But it

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

2012-08-27 Thread Wjhonson
Oooo naughty This is *not* in our online HELP BASIC display, and yet it works. I guess it's a synonym for NAP in Universe -Original Message- From: Oaks, Harold harold.o...@clark.wa.gov To: U2 Users List u2-users@listserver.u2ug.org Sent: Mon, Aug 27, 2012 1:34 pm Subject: Re: [U2]

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

2012-08-27 Thread Wjhonson
Wow! We have *SEVENTY NINE* entries in Global.Catdir starting with a ! Only *eighteen* in BASIC HELP Jeez -Original Message- From: George Gallen ggal...@wyanokegroup.com To: U2 Users List u2-users@listserver.u2ug.org Sent: Mon, Aug 27, 2012 1:50 pm Subject: Re: [U2] [ud] Sub-second

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

2012-08-27 Thread Ed Clark
yep, it's there for compatibility with pr1me. the source is in APP.PROGS SLEEP: 0031 subroutine PR1ME(time.in.milliseconds) 0032 ;* if time.in.milliseconds 1000 then sleep 1 0033 ;* else sleep (time.in.milliseconds / 1000) 0034 0035NAP time.in.milliseconds 0036 return On Aug 27, 2012, at

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

2012-08-27 Thread Ed Clark
yep, those 79 programs are for compatibility with prime and are mostly not documented, because they aren't documented :). the source for all of them is in APP.PROGS I think. On Aug 27, 2012, at 4:58 PM, Wjhonson wjhon...@aol.com wrote: Wow! We have *SEVENTY NINE* entries in Global.Catdir

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

2012-08-27 Thread Oaks, Harold
I was unaware of NAP before today! That's why I'm still using !SLEEP$ (yes, as we did in PI/OPEN). I like it - thanks. -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Ed Clark Sent: Monday, August 27, 2012 2:35 PM

Re: [U2] PI/UV: Decompiler

2012-08-27 Thread Robert
Does anyone know how to find out more information about 'IBM's compiler'? (see http://www.mail-archive.com/u2-users@listserver.u2ug.org/msg10843.html ) Does anyone know where to locate a decompiler (or decompiler service) for UNIBASIC (UNIDATA BASIC)? Does anyone know how to access the 'free

Re: [U2] PI/UV: Decompiler *** mispelling correction *** in the previous email

2012-08-27 Thread Robert
OOPS: IBM's compiler should read IBM's decompiler. Robert Norman ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinfo/u2-users

Re: [U2] PI/UV: Decompiler *** mispelling correction *** in the previous email

2012-08-27 Thread Bob Rasmussen
And oops, mispelling should be misspelling :-) On Mon, 27 Aug 2012, Robert wrote: OOPS: IBM's compiler should read IBM's decompiler. Robert Norman ___ U2-Users mailing list U2-Users@listserver.u2ug.org