Re: [U2] Please recommend a Pick-based upgrade for QuickBooks

2013-12-18 Thread George R Smith

http://www.gaap.com/

Pick based for over 30 years.
George

-Original Message- 
From: Wjhonson

Sent: Wednesday, December 18, 2013 10:53 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Please recommend a Pick-based upgrade for QuickBooks


For a client who is currently using QuickBooks.

Just essentially the same functionality as QuickBooks, doesn't need added 
bells and whistles.

No one who's going to charge 50K please :)
Thanks.



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users 


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Unidata 7.1.16 Multiple Active Select Lists

2012-09-24 Thread George R Smith

Have you given any consideration on reading the list from the pointer file ?
George

-Original Message- 
From: Kevin King 
Sent: Monday, September 24, 2012 1:01 PM 
To: U2 Users List 
Subject: Re: [U2] Unidata 7.1.16 Multiple Active Select Lists 


Bob, this is exactly what I'm attempting, to save the current 0 list and
restore it.  David, checking the list before the FORM.LIST appears to have
solved the problem.  Thank you.

Has this kind of thing always been this onerous?  I recall doing it much
more easily - on Unidata - but it's been years.

On Mon, Sep 24, 2012 at 11:57 AM, Woodward, Bob
bob_woodw...@k2sports.comwrote:


Seems like the simple solution would be in your subroutine, before you
need to generate your select, test the SYSTEM variable to see if an
active select is already in use.  If it is, do a READLIST into a
variable.  Then at the end of your subroutine, if anything is in your
variable, do a UNIBASIC SELECT to reestablish the active select list.
You might just always check for an active list at the beginning of your
subroutine as a normal setup function then as a exit routine, restore
the active list.

Just a thought.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Kevin King
Sent: Monday, September 24, 2012 10:43 AM
To: U2 Users List
Subject: Re: [U2] Unidata 7.1.16 Multiple Active Select Lists

Well, that success was short lived.  While the READLIST and FORMLIST
allow my SUBR(..) field to not consume the active select list zero,
these two commands produce different results:

LIST ORDER.LINE WITH fieldName fieldName

...this will show the lines that have this field set, and will show the
field properly.  However, this command returns no items:

SELECT ORDER.LINE WITH fieldName

Basically my program is doing this:

READLIST ACTIVE.LIST FROM 0 ELSE NULL
*
CMD = select ... TO 2
EXECUTE CMD CAPTURING OUTPUT
*
EOF = @FALSE
LOOP
  READNEXT ID FROM 2 ELSE EOF = @TRUE
UNTIL EOF DO
  ..
REPEAT
*
CLEARSELECT 2
*
FORMLIST ACTIVE.LIST TO 0

All other input/ideas appreciated.

On Mon, Sep 24, 2012 at 11:26 AM, Kevin King ke...@precisonline.com
wrote:

 And we have a winner!  Thank you everyone!  The READLIST and FORMLIST
 will work; seems kinda kludgy, but hey, it's working.


 On Mon, Sep 24, 2012 at 11:21 AM, David A. Green
 dgr...@dagconsulting.com
  wrote:

 If you already have an active list then you'll have to save it, then
 restore it.  See READLIST and FORMLIST.

 David A. Green
 (480) 813-1725
 DAG Consulting

 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org
 [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Kevin King
 Sent: Monday, September 24, 2012 10:11 AM
 To: U2 Users List
 Subject: Re: [U2] Unidata 7.1.16 Multiple Active Select Lists

 It's all fine if the program controls both lists, but in this case
 the
 SUBR(..) type field could be accessed in just about any context, from

 TCL, from a download, from MITS, from another BASIC routine, with or
 without a select list...

 The RTNLIST doesn't solve the problem of my select command
 consuming the active list 0.  It seems that the PASSLIST extension to

 EXECUTE is designed specifically for this purpose, but it produces
 nothing but compilation
 errors:

 CMD = select ...
 EXECUTE CMD CAPTURING OUTPUT RTNLIST 2 PASSLIST 2

 ...produces a compilation error about the misuse of RTNLIST,
 despite the documentation saying this should be possible.

 The point is that I want to leave select list 0 entirely alone, which

 is why I'm using $BASICTYPE U.  BASICTYPE P - standard on these
 SB+ systems - does not allow one to READNEXT from anything but list
 0, and I want to leave list zero untouched.

 Gotta be a way, right?

 -K

 On Mon, Sep 24, 2012 at 10:56 AM, Martin Braid mbr...@epicor.com
wrote:

  Hi Kevin, Any reason why you are using type U ? This
certainly
  works using P ...
 
  S='SELECT SOMEFILE WITH SOMETHING = OOJIT'
  EXECUTE S RTNLIST MYLIST CAPTURING ANYOUTPUT
  EOF=0
  LOOP UNTIL EOF DO
READNEXT MYID FROM MYLIST THEN
  GSOUB MYMESS
END ELSE EOF=1
  REPEAT
 
  Martin
 
 
  -Original Message-
  From: u2-users-boun...@listserver.u2ug.org
  [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Baker
  Hughes
  Sent: 24 September 2012 17:49
  To: 'U2 Users List'
  Subject: Re: [U2] Unidata 7.1.16 Multiple Active Select Lists
 
  Can you use SELECT yourfile WITH whatever TO 8 {specific list
  number} in the master process, and let your SUBR virtual field
  default to list
  0 {zero}?
 
  The other option could be to do a READLIST within the SUBR function

  and reset the list when RETURNing, but this could be onerous in
  terms of processing speed.
 
  HTH
  -Baker
 
 
 
  -Original Message-
  From: u2-users-boun...@listserver.u2ug.org
  [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Kevin
  King
  Sent: Monday, September 24, 2012 11:43 AM
  To: U2 Users List
  

Re: [U2] Unidata 7.1.16 Multiple Active Select Lists

2012-09-24 Thread George R Smith

Kevin,

Got it, and you don't want to or can't READNEXT thru and create your own 
list and save it to file of our choice then
read it back in and use.  I know it seems like you should not have to do 
that but I have used this in the past.


George

-Original Message- 
From: Kevin King

Sent: Monday, September 24, 2012 1:08 PM
To: U2 Users List
Subject: Re: [U2] Unidata 7.1.16 Multiple Active Select Lists

That's just it, George, there is no saved list.  It's just an active list 0.

On Mon, Sep 24, 2012 at 12:05 PM, George R Smith 
geo...@grsmith.arcoxmail.com wrote:


Have you given any consideration on reading the list from the pointer file
?
George

-Original Message- From: Kevin King Sent: Monday, September 24,
2012 1:01 PM To: U2 Users List Subject: Re: [U2] Unidata 7.1.16 Multiple
Active Select Lists
Bob, this is exactly what I'm attempting, to save the current 0 list and
restore it.  David, checking the list before the FORM.LIST appears to have
solved the problem.  Thank you.

Has this kind of thing always been this onerous?  I recall doing it much
more easily - on Unidata - but it's been years.

On Mon, Sep 24, 2012 at 11:57 AM, Woodward, Bob
bob_woodw...@k2sports.com**wrote:

 Seems like the simple solution would be in your subroutine, before you

need to generate your select, test the SYSTEM variable to see if an
active select is already in use.  If it is, do a READLIST into a
variable.  Then at the end of your subroutine, if anything is in your
variable, do a UNIBASIC SELECT to reestablish the active select list.
You might just always check for an active list at the beginning of your
subroutine as a normal setup function then as a exit routine, restore
the active list.

Just a thought.

-Original Message-
From: 
u2-users-bounces@listserver.**u2ug.orgu2-users-boun...@listserver.u2ug.org

[mailto:u2-users-bounces@**listserver.u2ug.orgu2-users-boun...@listserver.u2ug.org]
On Behalf Of Kevin King
Sent: Monday, September 24, 2012 10:43 AM
To: U2 Users List
Subject: Re: [U2] Unidata 7.1.16 Multiple Active Select Lists

Well, that success was short lived.  While the READLIST and FORMLIST
allow my SUBR(..) field to not consume the active select list zero,
these two commands produce different results:

LIST ORDER.LINE WITH fieldName fieldName

...this will show the lines that have this field set, and will show the
field properly.  However, this command returns no items:

SELECT ORDER.LINE WITH fieldName

Basically my program is doing this:

READLIST ACTIVE.LIST FROM 0 ELSE NULL
*
CMD = select ... TO 2
EXECUTE CMD CAPTURING OUTPUT
*
EOF = @FALSE
LOOP
  READNEXT ID FROM 2 ELSE EOF = @TRUE
UNTIL EOF DO
  ..
REPEAT
*
CLEARSELECT 2
*
FORMLIST ACTIVE.LIST TO 0

All other input/ideas appreciated.

On Mon, Sep 24, 2012 at 11:26 AM, Kevin King ke...@precisonline.com
wrote:

 And we have a winner!  Thank you everyone!  The READLIST and FORMLIST
 will work; seems kinda kludgy, but hey, it's working.


 On Mon, Sep 24, 2012 at 11:21 AM, David A. Green
 dgr...@dagconsulting.com
  wrote:

 If you already have an active list then you'll have to save it, then
 restore it.  See READLIST and FORMLIST.

 David A. Green
 (480) 813-1725
 DAG Consulting

 -Original Message-
 From: 
 u2-users-bounces@listserver.**u2ug.orgu2-users-boun...@listserver.u2ug.org

 
[mailto:u2-users-bounces@**listserver.u2ug.orgu2-users-boun...@listserver.u2ug.org]
On Behalf Of Kevin King
 Sent: Monday, September 24, 2012 10:11 AM
 To: U2 Users List
 Subject: Re: [U2] Unidata 7.1.16 Multiple Active Select Lists

 It's all fine if the program controls both lists, but in this case
 the
 SUBR(..) type field could be accessed in just about any context, from

 TCL, from a download, from MITS, from another BASIC routine, with or
 without a select list...

 The RTNLIST doesn't solve the problem of my select command
 consuming the active list 0.  It seems that the PASSLIST extension to

 EXECUTE is designed specifically for this purpose, but it produces
 nothing but compilation
 errors:

 CMD = select ...
 EXECUTE CMD CAPTURING OUTPUT RTNLIST 2 PASSLIST 2

 ...produces a compilation error about the misuse of RTNLIST,
 despite the documentation saying this should be possible.

 The point is that I want to leave select list 0 entirely alone, which

 is why I'm using $BASICTYPE U.  BASICTYPE P - standard on these
 SB+ systems - does not allow one to READNEXT from anything but list
 0, and I want to leave list zero untouched.

 Gotta be a way, right?

 -K

 On Mon, Sep 24, 2012 at 10:56 AM, Martin Braid mbr...@epicor.com
wrote:

  Hi Kevin, Any reason why you are using type U ? This
certainly
  works using P ...
 
  S='SELECT SOMEFILE WITH SOMETHING = OOJIT'
  EXECUTE S RTNLIST MYLIST CAPTURING ANYOUTPUT
  EOF=0
  LOOP UNTIL EOF DO
READNEXT MYID FROM MYLIST THEN
  GSOUB MYMESS
END ELSE EOF=1
  REPEAT
 
  Martin
 
 
  -Original Message-
  From: 
  u2-users-bounces@listserver.**u2ug.orgu2-users-boun

Re: [U2] Attribute Problem

2012-05-03 Thread George R Smith

Could it be that MATL is being subtracted from F ?
Which of course would not work unless MATL and F
had numeric values

george

-Original Message- 
From: charles_shaf...@ntn-bower.com 
Sent: Thursday, May 03, 2012 7:25 AM 
To: U2 Users List 
Cc: u2-users-boun...@listserver.u2ug.org 
Subject: Re: [U2] Attribute Problem 


Done.

Charles Shaffer
Senior Analyst
NTN-Bower Corporation



From:   Martin Braid mbr...@epicor.com
To: U2 Users List u2-users@listserver.u2ug.org, 
Date:   05/02/2012 04:45 PM

Subject:Re: [U2] Attribute Problem
Sent by:u2-users-boun...@listserver.u2ug.org



You've already got the answer. Use F_MATL instead of F-MATL and stop
thinking about it.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of
charles_shaf...@ntn-bower.com
Sent: 02 May 2012 20:13
To: u2-users@listserver.u2ug.org
Subject: [U2] Attribute Problem

Hi.  I think I have finally gone insane. 


I am having a problem with the attribute MATL.AMT.  It calculates the
extended amount on hand by taking the frozen material cost times the on
hand amount.

The problem is when I use F_MATL for the frozen material cost, MATL.AMT
is good.  When I use F-MATL for the frozen material cost, it returns 0
everytime.

F_MATL and F-MATL are identical and if you list them both work fine.
But when they are used in the calculation F_MATL works, but F-MATL.
doesn't. 
Can anyone see what the problem is?


**
:AE DICT INVENTORY-LOCATION_18 MATL.AMT
Top of MATL.AMT in DICT INVENTORY-LOCATION_18, 6 lines, 43
characters.
*--: P
001: V
002: ON.HAND * F-MATL
003: MR25,
004: MATERIAL.AMT
005: 13R
006: S
Bottom.

**
:AE DICT INVENTORY-LOCATION_18 F_MATL
Top of F_MATL in DICT INVENTORY-LOCATION_18, 6 lines, 93 characters.
*--: P
001: V
002: @ID; OCONV(@ID, G0*1); OCONV(@2, TINVENTORY-MASTER*18;X;66;66)
003: MD5,
004: MATERIAL/UNIT
005: 13R
006: S
Bottom.

***
:AE DICT INVENTORY-LOCATION_18 F-MATL
Top of F-MATL in DICT INVENTORY-LOCATION_18, 6 lines, 93 characters.
*--: P
001: V
002: @ID; OCONV(@ID, G0*1); OCONV(@2, TINVENTORY-MASTER*18;X;66;66)
003: MD5,
004: MATERIAL/UNIT
005: 13R
006: S
Bottom.




Charles Shaffer
Senior Analyst
NTN-Bower Corporation
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Click
https://www.mailcontrol.com/sr/wQw0zmjPoHdJTZGyOCrrhg==
cXO5UZqptIGHDy7!uJKtCfM2WwvnrwGEQlca1YcpG8Zdg==  to report this email as
spam.


Epicor Software (UK) is a limited company registered in England  Wales. 
Registration Number: 2338274.   Registered Office:  6th Floor, One London 
Wall, London EC2Y 5EB 
This e-mail is for the use of the intended recipient(s) only. If you have 
received this e-mail in error, please notify the sender immediately and 
then delete it. If you are not the intended recipient, you must not use, 
disclose or distribute this e-mail without the author's prior permission. 
We have taken precautions to minimize the risk of transmitting software 
viruses, but we advise you to carry out your own virus checks on any 
attachment to this message. We cannot accept liability for any loss or 
damage caused by software viruses. Any views and/or opinions expressed in 
this e-mail are of the author only and do not represent the views of 
Epicor Software (UK) Limited or any other company within its group.



This message has been scanned for malware by Websense. www.websense.com
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] mvToolbox--digression about why anyone would want telnet-based tools

2012-02-20 Thread George R Smith

Share ?


Accuterm Wed would be alternative.  Good price great service.

George

-Original Message- 
From: Wjhonson

Sent: Monday, February 20, 2012 1:15 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] mvToolbox--digression about why anyone would want 
telnet-based tools



Share ?





-Original Message-
From: Les Hewkin les.hew...@travisperkins.co.uk
To: 'U2 Users List' u2-users@listserver.u2ug.org
Sent: Mon, Feb 20, 2012 6:04 am
Subject: Re: [U2] mvToolbox--digression about why anyone would want 
telnet-based tools



Long live telnetwe use a full screen editor for Universe, written in 
house

of course, being used by about 80 developers as I type.

Les Sherlock Hewkin
Senior Project Manager
Finance Systems, I.T. Department
T 01604 592289, M 07917 856195


-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org]

On Behalf Of Richard
Sent: 20 February 2012 13:41
To: U2 Users List
Subject: Re: [U2] mvToolbox--digression about why anyone would want 
telnet-based

tools

--- On Sat, 18/2/12, Symeon Breen syme...@gmail.com wrote:

I seriously believe most MV people
are not programming in ED on telnet (or
ssh)   and that they are using some form of GUI editor.


With respect, I disagree. I work alongside dozens of UniVerse developers and 
I
am in a very small minority who use a GUI based editor. The vast majority 
use

our own custom editor, which runs on a ubiquitous 'green-screen' terminal
emulator. Even those like myself who favour editing in a GUI still do all 
other

tasks through command line.
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

html
head
meta http-equiv=Content-type content=text/html; charset=UTF-8
/head
body
P style=MARGIN-TOP: 0pt; MARGIN-BOTTOM: 0ptSPAN
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'This e-mail and any
attachments are confidential and intended solely for the use of the 
addressee
only. If you have received this message in error, you must not copy, 
distribute
or disclose the contents; please notify the sender immediately and delete 
the

message. /SPAN/P
P style=MARGIN-TOP: 0pt; MARGIN-BOTTOM: 0ptSPAN
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'This message is
attributed to the sender and may not necessarily reflect the view of Travis
Perkins plc or its subsidiaries (Travis Perkins). Agreements binding Travis
Perkins may not be concluded by means of e-mail communication. /SPAN/P
P style=MARGIN-TOP: 0pt; MARGIN-BOTTOM: 0ptSPAN
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'E-mail transmissions 
are
not secure and Travis Perkins accepts no responsibility for changes made to 
this


message after it was sent. Whilst steps have been taken to ensure that this
message is virus free, Travis Perkins accepts no liability for infection and
recommends that you scan this e-mail and any attachments. /SPAN/P
P style=MARGIN-TOP: 0pt; MARGIN-BOTTOM: 0ptSPAN
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'Part of Travis 
Perkins

plc. Registered Office: Lodge Way House, Lodge Way, Harlestone Road,
Northampton, NN5 7UG. /SPAN/P
/BODY
/HTML

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users 


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] mvToolbox--digression about why anyone would want telnet-based tools

2012-02-20 Thread George R Smith

Only know do I understand.
Thanks
George

-Original Message- 
From: Wjhonson

Sent: Monday, February 20, 2012 1:47 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] mvToolbox--digression about why anyone would want 
telnet-based tools



WED is not an inplace full screen editor.
It's merely a hyped up Notepad.  Not the same thing.
You cannot use WED to say Oh by the way, go grab the cross reference files 
and show me every OTHER program that also reads the customer file.  You 
could however do that, with an inplace full screen editor






-Original Message-
From: George R Smith geo...@grsmith.arcoxmail.com
To: u2-users u2-users@listserver.u2ug.org
Sent: Mon, Feb 20, 2012 11:43 am
Subject: Re: [U2] mvToolbox--digression about why anyone would want 
telnet-based tools




Share ?


Accuterm Wed would be alternative.  Good price great service.

George

-Original Message- 
From: Wjhonson

Sent: Monday, February 20, 2012 1:15 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] mvToolbox--digression about why anyone would want
telnet-based tools


Share ?





-Original Message-
From: Les Hewkin les.hew...@travisperkins.co.uk
To: 'U2 Users List' u2-users@listserver.u2ug.org
Sent: Mon, Feb 20, 2012 6:04 am
Subject: Re: [U2] mvToolbox--digression about why anyone would want
telnet-based tools


Long live telnetwe use a full screen editor for Universe, written in
house
of course, being used by about 80 developers as I type.

Les Sherlock Hewkin
Senior Project Manager
Finance Systems, I.T. Department
T 01604 592289, M 07917 856195


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org]
On Behalf Of Richard
Sent: 20 February 2012 13:41
To: U2 Users List
Subject: Re: [U2] mvToolbox--digression about why anyone would want
telnet-based
tools

--- On Sat, 18/2/12, Symeon Breen syme...@gmail.com wrote:

I seriously believe most MV people
are not programming in ED on telnet (or
ssh)   and that they are using some form of GUI editor.


With respect, I disagree. I work alongside dozens of UniVerse developers and
I
am in a very small minority who use a GUI based editor. The vast majority
use
our own custom editor, which runs on a ubiquitous 'green-screen' terminal
emulator. Even those like myself who favour editing in a GUI still do all
other
tasks through command line.
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

html
head
meta http-equiv=Content-type content=text/html; charset=UTF-8
/head
body
P style=MARGIN-TOP: 0pt; MARGIN-BOTTOM: 0ptSPAN
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'This e-mail and any
attachments are confidential and intended solely for the use of the
addressee
only. If you have received this message in error, you must not copy,
distribute
or disclose the contents; please notify the sender immediately and delete
the
message. /SPAN/P
P style=MARGIN-TOP: 0pt; MARGIN-BOTTOM: 0ptSPAN
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'This message is
attributed to the sender and may not necessarily reflect the view of Travis
Perkins plc or its subsidiaries (Travis Perkins). Agreements binding Travis
Perkins may not be concluded by means of e-mail communication. /SPAN/P
P style=MARGIN-TOP: 0pt; MARGIN-BOTTOM: 0ptSPAN
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'E-mail transmissions
are
not secure and Travis Perkins accepts no responsibility for changes made to
this

message after it was sent. Whilst steps have been taken to ensure that this
message is virus free, Travis Perkins accepts no liability for infection and
recommends that you scan this e-mail and any attachments. /SPAN/P
P style=MARGIN-TOP: 0pt; MARGIN-BOTTOM: 0ptSPAN
style=FONT-SIZE: 8.2pt; FONT-FAMILY: 'MS Sans Serif'Part of Travis
Perkins
plc. Registered Office: Lodge Way House, Lodge Way, Harlestone Road,
Northampton, NN5 7UG. /SPAN/P
/BODY
/HTML

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users 


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Extract first and last name from free-form name

2011-12-14 Thread George R Smith

Count Darling IV is alive and well. He lives in Fayetteville, AR
still works with mvBase.
George

-Original Message- 
From: Charlie Noah

Sent: Wednesday, December 14, 2011 8:00 AM
To: U2 Users List
Subject: Re: [U2] Extract first and last name from free-form name

And how about Count Darling IV? Count is actually his first name. I
haven't heard anything about him in years.

Charlie

On 12-14-2011 7:47 AM, Wjhonson wrote:

  Or in our system we have entries like
Dean Suarez Smith

In actuality the customer states that Suarez Smith is a double last 
name, not a middle name and last name

And Dean is their title... or no it's their first name...

Actually Doctor can be a first name as well.
It's a mess





-Original Message-
From: Mecki Foerthmannmec...@gmx.net
To: u2-usersu2-users@listserver.u2ug.org
Sent: Wed, Dec 14, 2011 5:09 am
Subject: Re: [U2] Extract first and last name from free-form name


Just face it - it can't be done!
So what if Dean has 2 first names and is a plumber?

On 14/12/2011 09:57, Symeon Breen wrote:

You need to do a proper lexical analysis in order to work these out

For example

Input : Dean Foster
Lex: title word

Input: Dean Reginald McGraw
Lex: title word word



Then set rules to say a lex of title word is probable worked out as
forename surname  and a lex of title word word is probably title
forename surname   you can assign probabilities against these and build
some self learning in.

It is a whole massive topic.




-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Mecki 
Foerthmann

Sent: 14 December 2011 08:22
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Extract first and last name from free-form name

And the list goes on and on and...
That's why free form names are an absolute pain and should be avoided.
It's so much easier to have Title, First Name(s), Last Name(s) fields in 
the

input screen and keep them as separate attributes.
You never get it 100% right.
In your list take Dean or Prince for instance - they could be first names
and not titles at all.
A colleague of mine tried a last name upper to lower case conversion
including Irish and Scottish names and out of Machine Co it made MacHine 
Co.

And don't even ask what happened to last names starting with O.:-)


On 14/12/2011 01:02, Charlie Noah wrote:

Great start, but here is a longer list, although still nowhere near
complete:

Prefixes

Code Description
1st Lt   First Lieutenant
Adm  Admiral
Atty Attorney
Brother  Brother (religious)
Capt Captain
ChiefChief
Cmdr Commander
Col  Colonel
Dean University Dean (includes Assistant and Associate)
Dr   Doctor (Medical or Educator)
ElderElder (religious)
Father   Father (religious)
Gen  General
Gov  Governor
Hon  Honorable (Cabinet Officer, Commissioner, Congressman, Judge,
etc.)
Lt Col   Lieutenant Colonel
Maj  Major
MSgt Major/Master Sergeant
Mr   Mister
Mrs  Married Woman
Ms   Single or Married Woman
Prince   Prince
Prof Professor (includes Assistant and Associate
RabbiRabbi (religious)
Rev  Reverend (religious)
Sister   Sister (religious)

Suffixes

Code Description
II   The Second
III  The Third
IV   The Fourth
VThe Fifth
CPA  Certified Public Accountant
DDS  Doctor of Dental Medicine
Esq  Esquire
JD   Jurist Doctor
Jr   Junior
Jnr  Junior (British)
LLD  Doctor of Laws
MD   Doctor of Medicine
PhD  Doctorate
Ret  Retired from Armed Forces
RN   Registered Nurse
RPh  Registered Pharmacist
Sr   Senior
Snr  Senior (British)
DO   Doctor of Osteopathy

Perhaps others can add more to the list.

Regards,
Charlie Noah

Tiny Bear's Wild Bird Store
Everything For The Backyard Bird Enthusiast, Except For The Birds
Info, Forum:  http://www.TinyBearMarketing.com
Store:http://Stores.TinyBearMarketing.com


On 12-13-2011 5:12 PM, Wjhonson wrote:

0044:  SUFFIXES = ,JR,SR,MD,III,
0045:  S.NAME = DCOUNT(UM.NAME,' ')
0046:  LAST.WORD.IN.NAME = FIELD(UM.NAME,' ',S.NAME)
0047:  IF INDEX(SUFFIXES,,:LAST.WORD.IN.NAME:,,1) THEN
0048: LAST.NAME = FIELD(UM.NAME,' ',S.NAME-1)
0049:  END ELSE
0050: LAST.NAME = LAST.WORD.IN.NAME
0051:  END
0052:  PREFIXES = ',DR,MR,MS,MISS,MRS,'
0053:  FIRST.WORD.IN.NAME = FIELD(UM.NAME,' ',1)
0054:  IF INDEX(PREFIXES,,:FIRST.WORD.IN.NAME:,,1) THEN
0055: FIRST.NAME = FIELD(UM.NAME,' ',2)
0056:  END ELSE
0057: FIRST.NAME = FIRST.WORD.IN.NAME
0058:  END
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


___
U2-Users mailing list
U2-Users@listserver.u2ug.org

Re: [U2] Examples of working ENCRYPT function?

2010-03-04 Thread George R Smith
I went thru this about three years ago. The main thing is that the ENCYPT
Routines that you call in UniBasic did not work until 7.15 I think.

Before that time I had to use an EXECUTE and use a third party encryption
routine. After the 7.15 release it has work fine for over a year maybe year
and a half.
George

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Rex Gozar
Sent: Thursday, March 04, 2010 9:04 AM
To: U2 Users List
Subject: Re: [U2] Examples of working ENCRYPT function?

Kevin,

For what it's worth, I'm posting some code we have working here.  A 
couple things to note: (a) the encryption process passes back 
non-printable characters along with the base64 that breaks the 
decryption process, so I strip them out. (b) I've noticed that some 
algorithms supported on earlier releases are not supported on later ones.

Universe 10.1.18 (Windows)

   FUNCTION ENCRYPT64(TEXT)
*
   EQU ALGORITHM$ TO RC4
   EQU ACTION$ENCRYPT TO 1
   EQU ACTION$ENCRYPT.BASE64 TO 2
   EQU ACTION$DECRYPT TO 3
   EQU ACTION$DECRYPT.BASE64 TO 4
   EQU DATALOC$STRING TO 1
   EQU DATALOC$FILE TO 2
   EQU KEY$ TO ABCDEFGHIJKLMNOP
   EQU KEYLOC$DATA TO 1
   EQU KEYLOC$FILE TO 2
   EQU KEYACTION$ACTUAL.KEY TO 1
   EQU KEYACTION$DERIVE.KEY TO 2
   EQU SALT$ TO 
   EQU IV$ TO 
   EQU RESULTLOC$STRING TO 1
   EQU RESULTLOC$FILE TO 2
*
   IF UNASSIGNED(TEXT) THEN
  ABORTM TEXT IS UNASSIGNED!
   END
   IF TEXT =  THEN
  RETURN ()
   END
*
   RESULT = 
*
   ERRCODE = ENCRYPT(ALGORITHM$, ACTION$ENCRYPT.BASE64,
  (TEXT), DATALOC$STRING,
  KEY$, KEYLOC$DATA, KEYACTION$ACTUAL.KEY,
  SALT$, IV$,
  RESULT, RESULTLOC$STRING)
*
   IF ERRCODE THEN
  ABORTM ENCRYPT64: ERRCODE :ERRCODE
   END
*
* get rid of non-printable characters
*
   RESULT = OCONV(RESULT, MCP)
   CONVERT . TO  IN RESULT
*
* return to caller
*
   RETURN (RESULT)
END


Kevin King wrote:
 Thanks Bob.  I'm at the giving up stage with Unidata 6.1 on AIX.
 Besides, I need something that can span a few different releases so I'm
 looking elsewhere.
 
 -Kevin
 http://www.PrecisOnline.com
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users
 

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Unidata on Virtualized Server

2010-01-26 Thread George R Smith
Bill,
I told my sales rep that over a week ago - seems strange doesn't it that the
suggestion has to come from the field.
George

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Brutzman, Bill
Sent: Tuesday, January 26, 2010 11:37 AM
To: U2 Users List
Subject: Re: [U2] Unidata on Virtualized Server

In my little world of fantasy... it would be great if Rocket Software
would... partner with a hosting company... or otherwise... work make U2
cloud-available.

--Bill

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Can UV do Multple requrests on a socket?

2009-08-27 Thread George R Smith
George,
The answer is yes, I do it all the time.


George R Smith
It's me and you against the world.
When do we attack? 


 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
 boun...@listserver.u2ug.org] On Behalf Of George Gallen
 Sent: Thursday, August 27, 2009 3:46 PM
 To: U2 Users List
 Subject: Re: [U2] Can UV do Multple requrests on a socket?
 
 but who gets the 40?
 
  -Original Message-
  From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
  boun...@listserver.u2ug.org] On Behalf Of Brutzman, Bill
  Sent: Thursday, August 27, 2009 4:44 PM
  To: U2 Users List
  Subject: Re: [U2] Can UV do Multple requrests on a socket?
 
 
  When port 5050 does not work, I try port 6040.
 
  --B
 
  -Original Message-
  From: u2-users-boun...@listserver.u2ug.org
  [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of George
  Gallen
  Sent: Thursday, August 27, 2009 3:55 PM
  To: U2 Users List
  Subject: [U2] Can UV do Multple requrests on a socket?
 
  If I setup a listener on say port 5050,
 Am I able to have mulitple connections to it from other servers?
 
  George
 
  ___
  U2-Users mailing list
  U2-Users@listserver.u2ug.org
  http://listserver.u2ug.org/mailman/listinfo/u2-users
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Basic Developer Toolkit - Eclipse SDK

2009-06-18 Thread George R Smith
What are  these prices ???

George R Smith
It's me and you against the world.
When do we attack? 

 -Original Message-
 From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-
 boun...@listserver.u2ug.org] On Behalf Of Steve Romanow
 Sent: Thursday, June 18, 2009 9:30 AM
 To: U2 Users List
 Subject: Re: [U2] Basic Developer Toolkit - Eclipse SDK
 
 their whole method of marketing this limits growth so much.  no one is
 going to pay these prices for this toolkit (i may be wrong, we wont).
 
 I had a bounce back from teh list, I apologize if this posts twice.
 
 charles_shaf...@ntn-bower.com wrote:
  Is anyone using the Eclipse SDK that was released recently (I think
 
  part of the UV 10.2 rollout pkg)?
 
  I am in the process of trying to download a LAMP development version of
  Eclipse.  I didn't know Eclipse could be used with U2 development.  I
  would take part in a webinar if one happened.
 
  Charles Shaffer
  Senior Analyst
  NTN-Bower Corporation
  ___
  U2-Users mailing list
  U2-Users@listserver.u2ug.org
  http://listserver.u2ug.org/mailman/listinfo/u2-users
 
 
 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] POS System

2009-06-10 Thread George R Smith
Ratex uses Universe I believe, they are in PA. - Gui

 

Budgetext uses mvBase they are in Fayetteville , AR - green screen

 

 

George R Smith

It's me and you against the world.

When do we attack? 

 

  _  

From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Norman Bauer
Sent: Wednesday, June 10, 2009 7:32 AM
To: U2 Users List
Subject: [U2] POS System

 

Does anyone know of a point-of-sale system that uses UniVerse?

 

Thanks,

 

Norm

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


RE: [U2] Send regular Windows file with AccuTerm

2008-02-12 Thread George R Smith
Gabe 
Use ftp binary mode. Windows has ftp and so does every unix/linux
grs

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Gabe Green
 Sent: Tuesday, February 12, 2008 5:54 AM
 To: u2-users@listserver.u2ug.org
 Subject: [U2] Send regular Windows file with AccuTerm
 
 Hi all,
 
 Is there a way with AccuTerm's standard file transfer utilities to
 transfer a binary Windows file (say, an .exe or a .mp3 or whatnot) to
 the host?
 
 I know you can transfer Universe files and Items, but it would be nice
 to be able to transfer regular Windows files as well.
 
 Thanks,
 Gabe
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] IBM increasing work force for U2

2008-01-25 Thread George R Smith
But what does the can reside in any East Coast City mean.
grs

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Jerry Banker
 Sent: Friday, January 25, 2008 8:09 AM
 To: u2-users@listserver.u2ug.org
 Subject: [U2] IBM increasing work force for U2
 
 Has anyone noticed that IMB is increasing their number technical
 marketing IT specialists for U2? A good, very good, sign.
 
 
 
 http://hotjobs.yahoo.com/job-search?locations=industry=kw=Universe+Uni
 data
 
 
 
 
 
 Jerry Banker
 
 Senior Programmer Analyst
 
 IBM Certified Solutions Expert
 
 Affiliated Acceptance Corp
 
 Sunrise Beach, MO
 
 1-800-233-8483
 
 www.affiliated.org http://www.affiliated.org
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: Re[2]: [U2] testing

2007-12-28 Thread George R Smith
I disagree - I prefer lists.
Grs

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Symeon Breen
 Sent: Friday, December 28, 2007 3:54 AM
 To: u2-users@listserver.u2ug.org
 Subject: RE: Re[2]: [U2] testing
 
 Which brings me round to my pet hate again - this is an amail list - why
 is it an email list, forums are just so much easier all round.
 
 
 Symeon.
 
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of MAJ Programming
 Sent: 28 December 2007 03:56
 To: u2-users@listserver.u2ug.org
 Subject: Re: Re[2]: [U2] testing
 
 Like many on this forum, I get around 80 emails a day. They are sorted by
 date/time and if I read a u2-post on the email at 2:00 pm that says What
 is
 1+1?, I may react and reply to it without reading the answer on the
 3:00pm
 email (and 3:05 and 3:10 and 3:15 etc). I may have gotten some ebay emails
 at 2:05, some enhancement emails at 2:10, an offer to help a rich African
 dignatary at 2:15, etc etc.
 
 Part of the volume are the excessive answers. On the D3 forum (available
 anywhere and not just on an email client), you can see the date of the
 last
 post to a thread. Plus, you will see the complete thread's content, no
 more,
 no less.
 
 So when someone earlier replies to the question What is 1+1, you can see
 if someone else responded with 2.
 
 My 1+1 cents
 Mark Johnson
 - Original Message -
 From: David Tod Sigafoos [EMAIL PROTECTED]
 To: MAJ Programming u2-users@listserver.u2ug.org
 Sent: Thursday, December 27, 2007 11:36 AM
 Subject: Re[2]: [U2] testing
 
 
  MAJ,
 
  Of course a simpler method would to be for users to use a email client
  that can perform threading .. even may web based ones can do that
 
  Of course if people don't read first nothing can help
 
  DSig
 
  Monday, December 24, 2007, 10:28:42 AM, you wrote:
 
  MP Perhaps this is why this forum may like a single thread  method
 (like
  MP Raining Data's D3, Mvbase etc).
 
  MP 5 of the responses were identical to the Phantom on Universe
 question
 and
  MP PH answer.
 
  MP Had the first reply said PH, the other four would have already
 seen
 PH
  MP and not bothered. This ain't a quiz and with everyone complainig
 about
  MP bandwidth, cycles and extraneous email clutter, this would be a
 great
 step
  MP in the reduction of all
 
  MP Have a Merry Christmas.
 
  MP My 1 cent
  MP Mark Johnson
  MP - Original Message -
  MP From: Perry Taylor [EMAIL PROTECTED]
  MP To: u2-users@listserver.u2ug.org
  MP Sent: Monday, December 24, 2007 12:56 PM
  MP Subject: Re: [U2] testing
 
 
   Output is saved to the PH file. Include the SQUAWK keyword in your
  MP PHANTOM
   command to get the specific item I'd
  
   Perry
  
   - Original Message -
   From: [EMAIL PROTECTED]
  MP [EMAIL PROTECTED]
   To: u2-users@listserver.u2ug.org u2-users@listserver.u2ug.org
   Sent: Mon Dec 24 11:39:00 2007
   Subject: RE: [U2] testing
  
   A wonderous and happy holidays to all!
  
   If anyone happens to be reading this list , I do have one universe
   phantom question
  
   Is there anyway to see what a phantom did?  At my last job there was
 a
   way to see phantom output (it wrote to a phantom log file, if you
   started the phantom with logging)
  
   Hopefully there is something similar in universe (10.1)
  
   Thanks,
  
   Dougc
  
   -Original Message-
   From: [EMAIL PROTECTED]
   [mailto:[EMAIL PROTECTED] On Behalf Of gerry-u2ug
   Sent: Monday, December 24, 2007 10:34 AM
   To: u2-users@listserver.u2ug.org
   Subject: [U2] testing
  
   hohoho
   ---
   u2-users mailing list
   u2-users@listserver.u2ug.org
   To unsubscribe please visit http://listserver.u2ug.org/
  
   --
   This message has been scanned for viruses and
   dangerous content by SecureMail, and is
   believed to be clean.
   ---
   u2-users mailing list
   u2-users@listserver.u2ug.org
   To unsubscribe please visit http://listserver.u2ug.org/
  
   CONFIDENTIALITY NOTICE: This e-mail message, including any
 attachments,
 is
  MP for
   the sole use of the intended recipient(s) and may contain
 confidential
 and
   privileged information.  Any unauthorized review, use, disclosure or
   distribution is prohibited. ZirMed, Inc. has strict policies
 regarding
 the
   content of e-mail communications, specifically Protected Health
  MP Information,
   any communications containing such material will be returned to the
   originating party with such advisement noted. If you are not the
 intended
   recipient, please contact the sender by reply e-mail and destroy all
  MP copies of
   the original message.
   ---
 
 
 
  --
  DSig `
  David Tod Sigafoos  ( O O )
   ___oOOo__( )__oOOo___
 
  Nearly all men can stand adversity, but if you want to test a man's
 character, give him power. -- Abraham Lincoln(1809-1865)
  ---
  

RE: [U2] Fastest Bi-Directional data transfer btwn MV and non MV dbms [AD]

2007-10-23 Thread George R Smith
Gee Janet all you had to do was put This is not an ad, it's a fact of
business in your posting and you would have been alright.
grs


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Janet Bond
 Sent: Tuesday, October 23, 2007 1:37 PM
 To: u2-users@listserver.u2ug.org
 Subject: RE: [U2] Fastest Bi-Directional data transfer btwn MV and non MV
 dbms [AD]
 
 I added it in the Subject should it be somewhere else?
 
 Please accept my apologies if I have offended anyone.
 
 Janet
 
 
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Moderator
 Sent: Tuesday, October 23, 2007 11:15 AM
 To: u2-users@listserver.u2ug.org
 Subject: Re: [U2] Fastest Bi-Directional data transfer btwn MV and non MV
 dbms [AD]
 
 Janet,
 When posting as a vendor or service provider, please use [AD]
 brackets [/AD] in your response as a courtesy to others.
 
  - Charles Barouch, Moderator
 
 Janet Bond wrote:
  I can setup a conference call with one of Developers.
 
  We have been in the transferring MultiValue data to other data sources
 since the early 80's (PK Harmony to start with, anyone remember). We may
 have some good input for you.
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: Re[2]: [U2] Over-coming EDitor shortcomings

2007-10-16 Thread George R Smith
Charles,

I have used Accuterm in 7.1 since its release and before that 6.1.
It sounds like you did not get a good install.
Make sure you have the latest install programs - my Accuterm version
is 5.3.131. I think I download the latest when I first installed.

Also, did you type BASICTYPE P at TCL - I mean ECL before you started
your install. 

I am sure if you call Peter he will get you started quickly. Accuterm is
the best - I and other developers I work with have used it for at least
15 years.

george


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]
 Sent: Tuesday, October 16, 2007 9:00 AM
 To: u2-users@listserver.u2ug.org
 Cc: [EMAIL PROTECTED]; u2-users@listserver.u2ug.org
 Subject: Re: Re[2]: [U2] Over-coming EDitor shortcomings
 
 Is anyone using Accuterm in the Unidata environment (7.1)?
 
 I downloaded an evaluation.  The terminal emulation works OK, but when I
 try to start the wED, I get this message
 
 
 
 At ECL the computer complains about FTTCL not being a verb.  I emailed
 Accuterm support, but have gotten no response.
 
 Charles Shaffer
 Senior Analyst
 NTN-Bower Corporation
 
 
 
 
 David Tod Sigafoos [EMAIL PROTECTED]
 Sent by: [EMAIL PROTECTED]
 10/15/2007 12:43 PM
 Please respond to u2-users
 
 
 To: u2-users@listserver.u2ug.org
 cc:
 Subject:Re[2]: [U2] Over-coming EDitor shortcomings
 
 
 MAJ,
 
 Does Accuterm work under WINE (though not sure why anyone would want
 to use Accuterm G)
 
 Monday, October 15, 2007, 6:07:04 AM, you wrote:
 
 SNIP
 MP I don't argue the stability or anything supporting the use of unix as
 a
 MP desktop OS. But in this case, it loses if it cannot use Accuterm.
 
 
 
 --
 DSig `
 David Tod Sigafoos  ( O O )
  ___oOOo__( )__oOOo___
 
 Our greatest duty in this life is to help others. And please, if you
 can't help them, could you at least not hurt them? - H.H. the Dalai
 Lama
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
 
 [demime 1.01d removed an attachment of type image/gif]
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] U2 University Last Week In Denver

2007-09-05 Thread George R Smith
Charles,

I have no connection to David BUT why don't you require Tony G to have an AD
/AD around most if not all his posts - all they are just solitations for
business.

Seems to be a bias here.

grs

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Moderator
 Sent: Wednesday, September 05, 2007 11:39 AM
 To: u2-users@listserver.u2ug.org
 Subject: Re: [U2] U2 University Last Week In Denver
 
 David,
 Please [AD] bracket [/AD] when you advocate a product, even a free
 one.
 
 - Charles Barouch, Moderator
  We are the only company in the U2 market that has the programming
 expertise
  and the years of experience that has been producing and selling Eclipse
  based tools.  We are updating our U2 editor and other tools on a daily
 basis
  and giving them away.
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] U2 University Last Week In Denver

2007-09-05 Thread George R Smith
Charles,

I think your reply demonstrates my point. Here I will help you look back,
didn't have to look far, most of his posts are in the same format.

george r smith

Post from Tony G on 08/29
I've been doing communications work with MV for many years I believe mv.NET
is the best software in its class.  In short, it's backed by a great
company that is constantly improving it, support is great, the price is
reasonable, it's cross-MV platform, the experience of using it for daily
development is excellent and comfortable, and the quality is excellent.
We don't like it because we sell it, we sell it because we like it, and
when my clients and colleagues finally take a look at it they almost
inevitably adopt it.  Even IBM has purchased a license to maintain their
own version of mv.NET.  What more do we want from the tools we use these
days?  I'll be happy to discuss this with anyone who is interested.
 
 George,
I'll have to look back. i do try my best to be even handed, but I am
 certainly not perfect.
How about it Tony? Have I missed chances to cyber-spank you?
 
 - Chuck
 
 George R Smith wrote:
  Charles,
 
  I have no connection to David BUT why don't you require Tony G to have
 an AD
  /AD around most if not all his posts - all they are just solitations for
  business.
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UniData 7.1 vs. MS SQL 2005 performance

2007-07-18 Thread George R Smith
Lets see I just spent 50.00 for a book on ajax, 80 for a book on
real estate accounting, 50 for a book on netbeans. Of course, I would
spend money on a book about Pick/U2/mvBasic on Cache. 

I WOULD however exclude one author even if they gave the book away - so let
us see the authors first.

george

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Charles Barouch
 Sent: Wednesday, July 18, 2007 8:58 AM
 To: u2-users@listserver.u2ug.org
 Cc: [EMAIL PROTECTED]
 Subject: RE: [U2] UniData 7.1 vs. MS SQL 2005 performance
 
 Robert,
 There is a firmly held belief that if
 books were available, that we, as a group, are too cheap to buy them. Clif
 Oliver (who ran this list for 9 years) used to edit a Pick series of
 O'Reilly. When I contacted Tim O'Reilly about a year ago, proposing new MV
 books, he said that he'd love to, but he can't afford to lose that kind of
 money.
  If you want books, we need to commit
 to publishers. I'm sure Brian would be willing to put up a sign-up sheet
 on U2UG.org, so we can submit a list of people who promise to buy at least
 one copy if a publisher will print a new book. I think a pre-order of 1K
 copies would get us some traction. Are we willing to spend $15 to $50 a
 piece for a new U2 book? I don't think they'll have trouble finding
 willing writers.
 
 --
 Charles Barouch
 [EMAIL PROTECTED] - Consulting
 (718) 762-3884x1
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] List of MV Database Experts

2007-06-14 Thread George R Smith
Ben there, done that !!

Trying to escape the dark side 

grs


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Don Kibbey
 Sent: Thursday, June 14, 2007 12:37 PM
 To: u2-users@listserver.u2ug.org
 Subject: Re: [U2] List of MV Database Experts
 
 Embrace the dark side
 
 Windows .Net  SQL Server 2005
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Triple-DES Encryption - Java question for U2 group

2007-06-05 Thread George R Smith
All,

I am testing the 7.1 ENCRYPT function (Unidata). Previous to 7.1 you could
not encrypt in a language such as C# and have the Unibasic ENCRYPT function
decrypt a string. I believe that IBM has fixed this in 7.16 therefore the
test.

My problem is that (sad to say unlike C# but now I must use Java) it is hard
to find code in Java to produce the base64 encrypted string IF YOU HAVE TO
USE THE FOLLOWING PARAMETERS.

KEY= 1234ABCDEFABCDEFGH1234  - Length = 24
KEY.SALT   = 01234567  - Length = 8
IV = 1ABCDEF1  - Length = 8

What I am trying to do is produce an encrypted string in Java using the
above paramerters and give it to Unidata decrypt it (that program is written
and working).

I also have to base64 encode the encrypted string.

The following code is what I have so far - can someone help or point me to
another newsgroup. Notice that I have not found out how to pass in the salt
value.


String instr = This is the string to be Encrypted;
String b64es;
String decstr;
byte[] encrypted;
byte[] toEncrypt;
byte[] fromEncrypt;
byte[] es;

byte[] myKey = 1234ABCDEFABCDEFGH1234.getBytes();
byte[] iv= 1ABCDEF1.getBytes();
   
try
{
  System.out.println(Start of Encryption Test);
  
  // Prepare for Encryption
  IvParameterSpec ivParameterSpec = new IvParameterSpec(iv);
  
  
  DESedeKeySpec keySpec = new DESedeKeySpec(myKey);
  SecretKeyFactory secretKeyFactory =
SecretKeyFactory.getInstance(DESede);
  SecretKey secretKey = secretKeyFactory.generateSecret(keySpec); 
  
  Cipher cipher = Cipher.getInstance(DESede/CBC/PKCS5Padding);
  cipher.init(Cipher.ENCRYPT_MODE,secretKey);
  // cipher.init(arg0, secretKey, ivParameterSpec)

  // Get encrypted array of bytes.
  toEncrypt = instr.getBytes();

 // Encrypts byte data
  encrypted = cipher.doFinal(toEncrypt);

 int keySizeInBits = keySpec.DES_EDE_KEY_LEN;
 System.out.println(Effective key size is  + keySizeInBits + 
bits.\n);

 // get the cipher algorithm
 String alg = cipher.getAlgorithm();
 System.out.println(Algorithm  + alg);
//  
//  // get the Key
//  System.out.println(Input Key :  + new String(key.getEncoded()));
//  
//  // get the IV
//  System.out.println(Input IV :  + new String(cipher.getIV()) +
\n);
//  
  // Base 64 Encode the encrypted string
  b64es = new BASE64Encoder().encodeBuffer(encrypted);
  System.out.println(Base64 encrypted output :  + b64es);

  // decrypt
  // Convert base64 encrypted string to encrypted byte array 
  es = new BASE64Decoder().decodeBuffer(b64es);

  // Initializes thE cipher
  cipher.init(Cipher.DECRYPT_MODE,secretKey);

  // decrypt byte array
  fromEncrypt = cipher.doFinal(es);

  // convert byte array into string
  decstr = new String(fromEncrypt);
  System.out.println(Input string :  + instr);
  System.out.println(Output string :  + decstr);
  
}
catch (Exception e)
{
  System.out.println(Error :  + e);
}
  }
}



Thanks
george
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Upgrade to Unidata Server Edition

2007-05-12 Thread George R Smith
All,

Because I am changing platforms IBM informed me by email late Friday that
I will need to do an edition upgrade from workgroup to server or enterprise.


Anyone know what the additional cost per user might be ?

Does server bring any additional benefits ?

The system is used for development only - not a production box.

Thanks

grs
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] U2 / Cache

2007-04-14 Thread george r smith
Tony,

Don't you think you should preface all your posts with I am trolling for
customers.
Now after a month you are now the go to guy for Cache (Notice the spelling),
right.

george r smith

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Tony Gravagno
 Sent: Saturday, April 14, 2007 12:59 AM
 To: [EMAIL PROTECTED]
 Subject: RE: [U2] U2 / Cache
 
 I am working with Cachi and InterSystems on an almost daily basis now.  I
 have to say, I've come full circle, from looking at them a couple years
 ago
 as being a threat to MV, to now seeing them as being what can keep MV
 alive
 for another generation.  The MV emulation within Cachi is very familiar to
 anyone who uses Universe, including VOC commands, BASIC, queries,
 paragraphs, and so much else.
 
 Their annual Developer Conference (DevCon) was just a couple weeks ago.  I
 wrote a pre-conference blog and I intend to write a post-conference recap:
   removethisNebula-RnD.com/blog
 I haven't written the recap yet because 1) we'll see a recap in the
 Spectrum E-newsletter very soon, and 2) because i had so much I wanted to
 write (so what else is new?) that I wrote a three article series for
 Spectrum Magazine and had to get the first article for the May/June issue
 done before I did my blog.
 
 The Sales guys are just anxious to ensure that the product is acceptable
 to
 people who are familiar with MV, and they want to understand who is
 interested in their software.  There's probably a good middleground
 between
 some companies that don't care what your experience is until you send them
 a check, and people who are on top of you to guide your experience.  Cut
 them some slack, ask them to give you some breathing space, and I'm sure
 they'll calm down.  :)
 
 About price - their model is very creative.  While they do have a base
 price for licensing, the model (as I understand it) is to negotiate each
 sale, not to quote a flat rate and let you walk away with pricing as the
 primary consideration, enticement, or discouragement for or against a
 sale.
 It's an interesting model - play the game and see if you like it, rather
 than expecting the normal flat model that everyone else uses.  Consider
 this, I believe their annual revenue is greater than that for all of the
 other MV market licenses combined - there are obviously a lot of companies
 out there who appreciate this creative model, so I think we should each
 check it out for ourselves.
 
 If you have questions about Cachi, including scalability, security,
 performance, etc, I suppose I can serve as a resource for this, and as a
 conduit/liaison for anyone who'd like to get familiar with the software.
 
 HTH
 Tony Gravagno
 Nebula Research and Development
 TG@ remove.this.part.pleaseNebula-RnD.com
 
 
 will wrote:
 The on-line demo of Cache looked good to me.  What I didn't like
 the almost immediate sales call after the down load.  The bloke
 who called demanded to know everything about my company and its
 products and everything I had done or ever might do in using their
 product and refused to give me a price. Do you have a price for a
 license?  Does anyone have it actually performing? Thanks,
 Will
 Nick Cipollina wrote:
 
  We are evaluating Cache.  I really like it.
 
  Thanks,
 
  Nick Cipollina
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf Of will
  Sent: Friday, April 13, 2007 1:44 PM
  To: [EMAIL PROTECTED]
  Subject: Re: [U2] U2 / mv.net
 
  Has there been an evaluation of Cache on this list?
 
  Will
 
  Nick Cipollina wrote:
 
  We are using C#, and that is because we are a C# shop.  At the moment
 
  we
 
  are not using mv.Net, although we have evaluated the product.  It is a
  nice product.
 
  Thanks,
 
  Nick Cipollina
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf Of George
 
  Hammerle
 
  Sent: Friday, April 13, 2007 11:30 AM
  To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
  Subject: [U2] U2 / mv.net
 
  Hello Nick,
 
  I think the main reason we are using VB ( vb.NET ) with mv.Net
  is that we have some people with a lot of VB experience but little to
  none C# experience. Which language are you using or planning to use?
 
  And
 
  are you using mv.NET?
 
  Thanks, George
 
  Date: Fri, 13 Apr 2007 08:40:02 -0400
  From: Nick Cipollina [EMAIL PROTECTED]
  Subject: RE: [U2] U2 / mv.net
 
  Hello,
 
  I'm curious, how many of you that are using .Net are using VB as
 
  opposed
 
  to C#?  And why?
 
  Thanks,
 
  Nick Cipollina
 ---
 u2-users mailing list
 [EMAIL PROTECTED]
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] list files

2007-04-09 Thread george r smith
Exactly - I am always amazed by all the people who want to help those
who are transferring programming jobs to India. Have you noticed that you
don't get any help comming from the outsourcing sites.

george

 Outsourcing companies should make use of the following resource before
 accepting contracts for work they don't know how to do, then asking list
 members to do their work for them for free.

 
  Thanks,
  Anita
 ---
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Maverick DBMS

2007-03-20 Thread george r smith
I looked at Maverick along time ago. Yes it was written in Java but unless
my memory is totatly gone the datastore was one of the open-source databases
(MySQL ??).

I just could not grasp how his was a help - now you have not only Java to
worry about you have another database to hold your pick data.

Martin is correct in my opinion - one spends too much time in getting the
database to compile, to run etc - and you can not concentrate on
programming. If you have a commercial use a commercial database.

I am sure you are aware you can use Java with U2 products - get the
best of both words. Don't know about Martin's but I would bet he has a Java
interface also. I have friends that us QM and they love it.

good luck
grs

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Mac Bhyat
 Sent: Tuesday, March 20, 2007 1:24 AM
 To: u2-users@listserver.u2ug.org
 Subject: [U2] Maverick DBMS
 
 Hi,
 
 Has anyone had any experience with the open source mv database maverick.
 What were your impressions, experiences etc.
 
 I am evaluating it as an alternative to Universe, specifically looking at
 converting our BASIC code to Java. Is this possible ?, or does maverick
 just
 put a wrapper around by BASIC code so that it acts like a Java Class
 
 Any information would be helpful
 
 Thanks
 
 Mac Bhyat
 Software Engineer - Special Projects
 Unibase Solutions (Pty) Ltd.
 
 URL: http://www.unibase.co.za http://www.unibase.co.za/
 Email: [EMAIL PROTECTED]
 Tel: 011 621 7000
 Cell: 079 181 3266
 Fax: 011 621 7029
 
 DISCLAIMER AND CONFIDENTIALITY
 This message and any attachment contain information intended solely for
 the
 addressee which is confidential or private in nature and subject to legal
 privilege. If you receive this message in error please notify the sender
 immediately by email and thereafter delete the message and do not disclose
 the content in any way. Unibase Solutions (Pty) Ltd cannot assure the
 integrity of this communication, nor that it is free of errors, virus,
 interception or interference, and disclaims all liability for any such.
 Views and opinions are those of the sender unless clearly stated as being
 that of the company. The authority of the sender to bind the company
 should
 be verified by the recipient and not assumed. For contact and address
 information regarding the company please go to
 http://www.unibase.co.za/
 www.unibase.co.za
 --
 This message was scanned for spam and viruses by BitDefender.
 For more information please visit http://linux.bitdefender.com/
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] [OT] Fond farewell

2007-03-14 Thread george r smith
Gordon,

I never met you but I know about you from your friends in MelaLand in Idaho
Falls. We just missed each other.

I wish you the best but I will tell you from experience that Pick is in your
blood - you will never leave even if it just is to have a home copy.

I spent 6 years in the Microsoft dark side - it is not fun.

The best
grs

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Gordon J Glorfield
 Sent: Wednesday, March 14, 2007 7:48 AM
 To: u2-users@listserver.u2ug.org
 Subject: [U2] [OT] Fond farewell
 
 Group,
 
 I have enjoyed my time with this list.  I've been on this list for the
 better part of the last 11 years.  This is by far the most helpful and
 courteous group that I've ever been associated with.  Some of you I know
 personally and would like to maintain some contact.  You know who you are.
 ;o)
 
 But I find it time to step away from the platform and technology that has
 provided my family and I a decent living for the past 21+ years.  I'm
 going to a new opportunity with a company that never heard of Pick or U2.
 This Friday will be my last day at this position.  You're all welcome to
 join us for a final happy hour at Hard Times Cafe in Frederick, MD Friday
 after 5:00PM EDT.
 
 This group has been an invaluable resource over the years.  I only hope I
 can find something similar for the new technologies I'll be tackling.
 
 Thanks again for everything,
 Gordon
 
 
 Gordon J. Glorfield
 Sr. Applications Developer
 UnitedHealthcare's Mid-Atlantic Health Plans
 301-360-8839
 
 
 This e-mail, including attachments, may include confidential and/or
 proprietary information, and may be used only by the person or entity to
 which it is addressed. If the reader of this e-mail is not the intended
 recipient or his or her authorized agent, the reader is hereby notified
 that any dissemination, distribution or copying of this e-mail is
 prohibited. If you have received this e-mail in error, please notify the
 sender by replying to this message and delete this e-mail immediately.
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] OT:Employment

2007-03-02 Thread george r smith
Jeff,
Quick tell us that this company that just hired the CIO is public. Give us
the name, it will be a good stock to short.
grs

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Jeffrey Butera
 Sent: Friday, March 02, 2007 7:39 AM
 To: u2-users@listserver.u2ug.org
 Subject: Re: [U2] OT:Employment
 
 If I can add more fuel to the fire.
 
 A good friend who has been running Datatel on Unidata for 20+ years (one
 of
 Datatel's oldest clients) recently hired a new CIO.  His first comment?
 Get
 off that Mom and Pop database and move to oracle.
 
 There's a lot of misunderstanding about MV databases but may people with
 the
 misunderstandings aren't willing to listen to rational discourse about the
 pros/cons.
 
 If Unidata has served this (unnamed) college for 20+ years, surely it's a
 reasonable database considering the amount of growth any college has faced
 over some 2 decades.
 
 --
 Jeff Butera, Ph.D.
 Administrative Systems
 Hampshire College
 [EMAIL PROTECTED]
 413-559-5556
 
 Try to be happy within the context of the life
that we are living.   Wayne Coyne
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] OT:Employment

2007-03-02 Thread george r smith
Jeff,
Sorry, I did not read your entire post. College.
grs

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Jeffrey Butera
 Sent: Friday, March 02, 2007 7:39 AM
 To: u2-users@listserver.u2ug.org
 Subject: Re: [U2] OT:Employment
 
 If I can add more fuel to the fire.
 
 A good friend who has been running Datatel on Unidata for 20+ years (one
 of
 Datatel's oldest clients) recently hired a new CIO.  His first comment?
 Get
 off that Mom and Pop database and move to oracle.
 
 There's a lot of misunderstanding about MV databases but may people with
 the
 misunderstandings aren't willing to listen to rational discourse about the
 pros/cons.
 
 If Unidata has served this (unnamed) college for 20+ years, surely it's a
 reasonable database considering the amount of growth any college has faced
 over some 2 decades.
 
 --
 Jeff Butera, Ph.D.
 Administrative Systems
 Hampshire College
 [EMAIL PROTECTED]
 413-559-5556
 
 Try to be happy within the context of the life
that we are living.   Wayne Coyne
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Microdata Conversion

2007-01-22 Thread george r smith
Oh no, George - ibm will not answer my support calls now :)
The other George Smith

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of George Smith
 Sent: Monday, January 22, 2007 11:10 AM
 To: u2-users@listserver.u2ug.org
 Subject: Re: [U2] Microdata Conversion
 
 Have you considered upgrading to the current Reality (v12) from
 Northgate-IS?  There should be no conversion at all. You will need to buy
 licenses, of course, but it will run on anything, so there will be minimal
 hardware expense.
 
 
 
 
 On 1/18/07, MAJ Programming [EMAIL PROTECTED] wrote:
 
  I have a client with a 1986 Microdata Spirit 6000 system that I would
 like
  to
  upgrade to something more contemporary.
 
  I had a client on UD Solaris who's software was from Microdata (true
 PQN)
  and
  IIRC, the Procs had the MV and other PQN-specific commands intact. They
  have 2
  UD systems that aren't being used.
 
  The very fact that this MCD client still has a 20 year old box is an
  indication of their economics.
 
  The solution has to be the most cost effective. I know of QM but don't
  know
  the real story of a MCD conversion. I don't think D3 has any MCD-D3
  conversion
  utilities, Proc-wise.
 
  Should I attempt to purchase one of the UD's for this client and enlist
  Ashwood or someone to install the programs with the media. I believe
 that
  UD
  has a conversion utility to adjust the 10 line dict items to the 7 line
  ones.
 
  I am looking forward to being the main programmer with the conversions.
 I
  am
  not looking to farm out this project as it will get too expensive real
  fast.
 
  Thanks in advance
  Mark Johnson
  ---
  u2-users mailing list
  u2-users@listserver.u2ug.org
  To unsubscribe please visit http://listserver.u2ug.org/
 
 
 
 
 --
 George Smith,  Phoenix, AZ
 Member of the Independent Computer Consultants Association since 1983
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2][UD] 7.1.8 for Windows?

2006-12-26 Thread george r smith
gee be happy. I am still waiting for Unidata on AMD Solaris 10 :)


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of David Wolverton
 Sent: Tuesday, December 26, 2006 9:07 AM
 To: u2-users@listserver.u2ug.org
 Subject: [U2][UD] 7.1.8 for Windows?
 
 Back at the office, and I've received a flurry of emails - it appears
 Santa
 was busy in Denver preparing the UniData 7.1.8 (aka the Respin) that
 includes all the Replication goodies we've been waiting for (like the
 heartbeat that does *something* then Replication is not running!)
 
 But Santa forgot the Windows Version!
 
 Anyone hear or know anything about the missing version and when the
 Workshop
 may be sending it out the door??
 
 
 David Wolverton
 
 
 ===
 Sunset Programming, Inc.
 Developing Today for a Productive Tomorrow
 P 214.337.8204
 F 469.442.1368
 E [EMAIL PROTECTED]
 ===
 CONFIDENTIALITY NOTICE:
 
 This e-mail message, and any accompanying documents, is for the sole use
 of
 the intended recipient(s) and may contain confidential and privileged
 information.  Any unauthorized review, use, disclosure, distribution or
 copying is prohibited.  If you are not the intended recipient, please
 contact our office by email or by telephone at (214) 337-8204 and
 immediately destroy all copies of the original message.
 ===
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UniData telnet

2006-12-21 Thread george r smith
Bill,
I stay on line to an external Unidata 7.1 server all day long with AccuTerm.
Usually it is some setting on the OS that is closing the connection. Routers
can have timeouts also.
george

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Bill Haskett
 Sent: Thursday, December 21, 2006 4:35 AM
 To: u2-users@listserver.u2ug.org
 Subject: [U2] UniData telnet
 
 I have UniData 7.1 running on a local server in our network.  I'm testing
 UniData 7.1 on an off-site server.  When I telnet in to the off-site
 server
 I notice telnet is disconnecting if idle for 30 minutes.  This never
 happens
 on our internal server.  We use AccuTerm.  The telnet port is different
 than
 port 23.
 
 I have the keepalive unchecked in AccuTerm because is sends a funny
 character to UniData (a greater-than character with a line underneath it).
 I used UniAdmin and configured UniData telnet to send the keepalive with
 the parameters being 1000 / 720 / 5.  It still disconnects.
 
 Does anyone know how this is supposed to work in UniAdmin and UniData?
 
 Thanks,
 
 Bill Haskett
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Sockets Universe Question

2006-10-17 Thread george r smith
Anthony,
If the telnet just sits there you are most likely being blocked by a
firewall on the host as Adrian said. Ask them to open up a port (for example
port 2004) for you.
When you telnet you should get a logon message.
george

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Anthony Dzikiewicz
 Sent: Monday, October 16, 2006 9:16 PM
 To: u2-users@listserver.u2ug.org
 Subject: RE: [U2] Sockets Universe Question
 
 I will give that a shot.  We are the client in this set up.  What should
 I expect if I telnet to the banks ip with the specified port ?  I am
 trying this and the telnet just sits there.  I will talk to their guys
 to help trouble shoot this as well.
 
 Thanks
 anthony
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of David Jordan
 Sent: Monday, October 16, 2006 7:50 PM
 To: u2-users@listserver.u2ug.org
 Subject: RE: [U2] Sockets Universe Question
 
 
 Hi Anthony
 
 Have you checked the firewall.  A quick and simple test to see if the
 socket is talking is to telnet to it using DOS or Unix Telnet utilities.
 
 Regards
 
 David Jordan
 Managing Consultant
 
 [EMAIL PROTECTED]
 
 www.dacono.com.au
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
 
 --
 No virus found in this incoming message.
 Checked by AVG Free Edition.
 Version: 7.1.408 / Virus Database: 268.13.4/477 - Release Date:
 10/16/2006
 
 
 --
 No virus found in this outgoing message.
 Checked by AVG Free Edition.
 Version: 7.1.408 / Virus Database: 268.13.4/477 - Release Date:
 10/16/2006
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Any have a Sun Sparc Box

2006-09-15 Thread george r smith
Thanks to all who have replied.
grs

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Mark Johnson
 Sent: Thursday, September 14, 2006 10:39 PM
 To: u2-users@listserver.u2ug.org
 Subject: Re: [U2] Any have a Sun Sparc Box
 
 Look up Bob Wyatt from Sun/Unidata. He knows virtually everything about
 that
 implementation.
 
 - Original Message -
 From: george r smith [EMAIL PROTECTED]
 To: u2-users@listserver.u2ug.org
 Sent: Thursday, September 14, 2006 12:04 PM
 Subject: [U2] Any have a Sun Sparc Box
 
 
  All,
 
  Anyone have any experience with Sun Sparc boxes as development boxes for
  Unidata.
 
  Anyone heard if IBM might certify Unidata on the Solaris AMD boxes.
 
  thanks
  grs
  ---
  u2-users mailing list
  u2-users@listserver.u2ug.org
  To unsubscribe please visit http://listserver.u2ug.org/
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Encrypt issue 8088

2006-08-30 Thread george r smith
Baker,
I'm the guy who had to implement because of unidata version on the command
line, so if you would send me a copy of your program I will keep it for the
future.

thanks
george

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Baker Hughes
 Sent: Friday, August 25, 2006 3:12 PM
 To: u2-users@listserver.u2ug.org
 Subject: RE: [U2] Encrypt issue 8088
 
 Symeon, others,
 
 I tested every 128+ bit cipher available with Encrypt and here are the
 results:
 All the ciphers work with encoding but require the workaround (remove
 extra LF).
 None work without encoding - the decrypt side either adds a random
 character, or craters altogether, and Decrypted string never matches raw
 string.
 
 If anyone wants a copy of my test program 'ENCRYPT.THIS' write me
 off-line.
 I also have spreadsheet of the testing results, comparing the
 accuracy/functionality of the ciphers.
 
 
 
 Encryption Testing program :ENCRYPT.THIS
 Choose from one of the available Ciphers
 1) rc4  2) des-ede3-cbc 3) des-ede3-cfb 4)
 des-ede3-ofb
 5) rc2-cbc  6) rc2-ecb  7) rc2-cfb  8) rc2-ofb
 9) rc5-cbc  10) rc5-cfb 11) rc5-ecb 12) rc5-ofb
 
 Enter Cipher choice 1 - 12 :1
 Enter Action - 1=Encrypt only, 2=Encrypt  Decode :2
 Data String :40550111
 ___Encrypting___
 ___
 There was an extra line feed, now removed from result.
 Encrypted Successfully !
 The Encrypt result is fdYWmfhZkszPfLGo+XsPQA==
 ___Decrypting___
 ___
 Decrypted Successfully !
 Decrypted result is 40550111
 Original data and decrypted data match, hooray!
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Symeon Breen
 Sent: Friday, August 25, 2006 1:06 AM
 To: u2-users@listserver.u2ug.org
 Subject: Re: [U2] Encrypt issue 8088
 
 Here is my standard crypt sub
 
 
FUNCTION AD.CRYPT(Word,key,iv)
 * Function to crypt something i.e. a password
 * a2c limited, Oct2005
 
Crypt=Word
 
Err='';result='';resLoc=1;salt=''
 
algorithm=rc2-cbc
 
Err=ENCRYPT(algorithm,2,Word,1,key,1,1,salt,iv,result,resLoc)
 
IF NOT(Err) THEN
   IF result[LEN(result),1]=CHAR(10) THEN
 result=result[1,LEN(result)-1]
 ;* IBM ISSUE 8088
   Crypt=result
END
 
RETURN Crypt
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Encrypt issue 8088

2006-08-24 Thread george r smith
Baker,

I don't know if you are trying to do this via a Unibasic subroutine call or
by using EXECUTE. I could not use the Unibasic because the Unidata version
was not 7.1 so I used the following. I had a lot of trouble with char(10)
also until I found the -a -A flags.

This works well on Solaris and Unidata 6.0. I sure you can see the command
we are EXECUTING and capturing the result.

george

CMD = 
CMD = echo :   PKT
CMD := |openssl enc -a -A
CMD :=  -iv :  IV
CMD :=  -: ALGORITHM
CMD :=  -K :   KEY
CMD :=  -out : PATH
CMD := /:  FILE.NAME

 CMD = 
 CMD = openssl enc -d -a -A
 CMD :=  -iv :  IV
 CMD :=  -: ALGORITHM
 CMD :=  -K :   KEY
 CMD :=  -in :  PATH
 CMD := /:  FILE.NAME


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Baker Hughes
 Sent: Thursday, August 24, 2006 9:35 AM
 To: u2-users@listserver.u2ug.org
 Subject: [U2] Encrypt issue 8088
 
 Hi,
 
 Can anyone share a code fragment for removing the extra Char(10)
 characters from the Encrypt function.
 
 I've studied the IBM articles (2) on U2 Encryption, and read the
 previous posts on this list.  I've tried to remove the extra LF with
 less than sterling results.  I can't find the char(10), whether I do or
 don't encode.  If I add an extra char(10) for Decrypt it overruns the
 expected length and craters.
 
 Before I resort to shelling out to Unix and running Openssl I'd like to
 exhaust the native U2 Encrypt possibility.
 
 We are on UniVerse 10.0 - the articles by Nik Kesic speculate that the
 Encrypt patch will arrive in 10.2, but I'm not certain when/if we'll
 load 10.2 anyway.
 
 Always enlightening reading this list. I'm thankful for you guys (in the
 NY sense of the word, inclusive of gals)[Y'all, for other Southerners.]
 
 TIA,
 -Baker
 
 
 R. Baker Hughes
 UniVerse Programming
 Mouser Electronics, Inc.
 (817) 804-3598 *
 [EMAIL PROTECTED] *
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Set udt priority on Unix (Solaris,Aix,HP)

2006-08-23 Thread george r smith
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of John Jenkins
 Sent: Wednesday, August 23, 2006 4:16 PM
 To: u2-users@listserver.u2ug.org
 Subject: RE: [U2] Set udt priority on Unix (Solaris,Aix,HP)
 
 On some Unix systems the command is chap - SNI / Reliant Unix by my
 (vague) recollection being an example. Other posters have already picked
 out
 nice which is more usual.
 
 Regards
 
 JayJay
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Basic Uniobjects for .NET Question

2006-08-08 Thread george r smith
Patricia,

I had the same question about a year ago - the answer is that is the way IBM
wrote it, so you have to be connected while you manipulate an array and any
of the other Uniobject .Net functions.

What I did was bring your array in, immediately create a dataset or an other
.Net data container and then close the connection.

george

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Patricia Wilson
 Sent: Tuesday, August 08, 2006 3:22 PM
 To: u2-users@listserver.u2ug.org
 Subject: [U2] Basic Uniobjects for .NET Question
 
 Why do you have to have a session going to manipulate an array you have
 already read in?  Why can't I read in
 
 the array, close the connection,. Then manipulate the array (insert
 command,etc) it without having a persistent connection, then if I NEED
 to write
 
 it back, I can reopen up a connection and write it back
 
 
 
 Can someone explain the basics ?
 
 
 
 Thanks!
 
 
 
 
 
 Quick Guide - Out of Uniobjects  for .Net doc
 
 The following code sample written in C# provides a quick guide for
 software developers working in UniObjects for .NET.
 
 using System;
 
 using IBMU2.UODOTNET;
 
 UniSession us1=null
 
 try
 
 {
 
 us1=UniObjects.OpenSession(DENVER\\asmith,xxxi,localhost,
 
 DEMO,UDCS);
 
 //open customer file
 
 UniFile fl=us1.CreateUniFile(customer);
 
 //use UniDataSet
 
 string[]sArray={2,3, 4};
 
 UniDataSet uSet=fl.ReadRecords(sArray);
 
 UniRecord q2=uSet[2];
 
 string sq2=q2.ToString();
 
 UniRecord q3=uSet[3];
 
 string sq3=q3.ToString();
 
 UniRecord q4=uSet[4]'
 
 string sq4=q4.ToString();
 
 //use UniCommand
 
 UniCommand cmd=us1.CreateUniCommand();
 
 cmd.Command=List VOC SAMPLE 10;
 
 cmd.Execute();
 
 string response_str=cmd.Response;
 
 Console.WriteLine(Response from UniCommand:,response_str);
 
 
 
 
 Code Samples for UniObjects for .NET 5-4 C:\Program
 Files\Adobe\FrameMaker7.0\Universe
 
 
 
 //test UniDynArray
 
 UniDynArray pArray=us1.CreateUniDynArray(a);
 
 pArray.Insert(1,b);
 
 pArray.Insert(1,c);
 
 pArray.Insert(1,d);
 
 Console.WriteLine(Result from UniDynArray is:,pArray.ToString());
 
 UniDynArray ur = pArray.Extract(2);
 
 Console.WriteLine(Result from UniDynArray Extract is:,ur.ToString());
 
 ur=pArray.Extract(3);
 
 Console.WriteLine(Result from UniDynArray Extract is:,ur.ToString());
 
 }
 
 catch(Exception ex)
 
 {
 
 if(us1 !=null  us1.isActive)
 
 {
 
 UniObjects.CloseSession(us1);
 
 us1=null
 
 }
 
 MessageBox.Show(ex.Message);
 
 }
 
 finally
 
 {
 
 if(us1 !=null  us1.IsActive)
 
 {
 
 UniObjects.CloseSession(us1);
 
 
 
 
 
 Patricia M. Wilson
 
 MIS Programmer
 
 x 3095
 
 813.635.3095
 
 [EMAIL PROTECTED]
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Unidata on Sun AMD Solaris boxes

2006-07-28 Thread george r smith
Hi All,

 

Anyone heard anything about Unidata 7.1 being certified on a Solaris AMD
(not sparc) box.

Big difference in price between sparc and AMD box

 

grs
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] U2 on Solaris for x86

2006-06-21 Thread george r smith
I have been wishing for a port to Sun x85. IBM tells me if there is a
business case they will port.
grs

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Brutzman, Bill
 Sent: Wednesday, June 21, 2006 11:00 AM
 To: 'u2-users@listserver.u2ug.org'
 Cc: '[EMAIL PROTECTED]'
 Subject: RE: [U2] U2 on Solaris for x86
 
 I regret the apparent Freudian slip... to have typed for Windows.
 
 --Bill
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Brutzman, Bill
 Sent: Wednesday, June 21, 2006 10:39 AM
 To: '[EMAIL PROTECTED]'
 Cc: 'u2-users@listserver.u2ug.org'
 Subject: [U2] U2 on Solaris for Windows
 
 
 Now that Sun's Solaris OS runs on Intel platforms, it would help if IBM
 could port UniVerse or UniData there.
 
 Perhaps the effort is already underway.  A comment indicating what, if
 anything, is happening is requested.
 
 --Bill
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] [UV] Solaris Compatiblity?

2006-05-17 Thread george r smith
Is that on Sparc or the x86 box. As of last month Unidata was only available
on the Sparc
grs

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of Barry Brevik
 Sent: Wednesday, May 17, 2006 12:49 PM
 To: u2-users@listserver.u2ug.org
 Subject: RE: [U2] [UV] Solaris Compatiblity?
 
 Does UniVerse run on Solaris?
 
 Yes, quite well.
 
 Barry Brevik
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Changes to the List - NO GOOGLE or etal...

2006-03-16 Thread george r smith
I too hate going to a site, the list is far preferable.
Vote with Jerry !!

Will someone summarize what this bru ha ha is all about.

grs

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-u2-
 [EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]
 Sent: Thursday, March 16, 2006 3:20 PM
 To: u2-users@listserver.u2ug.org
 Subject: RE: [U2] Changes to the List - NO GOOGLE or etal...
 
 I vote with Jerry.
 
  -Original Message-
  From:   Jerry Banker [SMTP:[EMAIL PROTECTED]
  Sent:   Thursday, March 16, 2006 10:35 AM
  To: Mike Preece; u2-users@listserver.u2ug.org
  Subject:Re: [U2] Changes to the List
 
  Don't go there. I think this was discussed many times and the consensus
  was
  no. I personally hate, is hate too strong a word, having to go to a
 group
  site to find out what is going on. Most of the people on this list work
  for
  a living and don't have the time to search out answering questions for
  free
  but if it comes into their mailbox and they've got the time they may
 give
  a
  hand.
 
  - Original Message -
  From: Mike Preece [EMAIL PROTECTED]
  To: u2-users@listserver.u2ug.org
  Sent: Thursday, March 16, 2006 3:50 AM
  Subject: RE: [U2] Changes to the List
 
 
   I've been holding back from putting this question, in the hope that
 the
   initiative might come from within U2UG, but it seems high time...
  
   What do people think of the idea of moving this list to a google group
   instead?
  
   We'd lose nothing btw - in that we could all send and receive emails
   to/from the list - or post and read messages online without any
 emails,
   and we'd have access to recent posts and, in time, archives, in the
 same
 
   way as for a news group.
  
   How many of you have not used a google group or a usenet group with a
   google interface?
  
   Of those that are familiar with google groups - is there anything this
   list provides that they don't?
  
   Maybe someone at U2UG could put a survey up on the U2UG web-site to
 get
   some numbers for responses to these and similar questions.
  
  To unsubscribe please visit http://listserver.u2ug.org/
 ---
 u2-users mailing list
 u2-users@listserver.u2ug.org
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] UODOTNET Connection Error

2005-11-05 Thread george r smith
Thanks to the gentleman who recommended that I include the full path in the
connection string, the problem is solved.

 

I can connect with the .Net objects again. 

 

Maybe the addition of a new Unidata account created the problem - who knows.

 

thanks to all

 

grs
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Unidata Question

2005-10-03 Thread george r smith
Robert, 

Thanks, I thought that I would have to use the oconv function. Just means I
have to do a small rewrite of the sub that does all the display.
thanks again
grs

 Here is a snippet that produces the desired output,using BASICTYPE U:
 
 0001 XX = 10001
 0002 YY = 2002 * (-1)
 0003 FM.01 = R#9
 0004 PRINT OCONV(XX,MR2,E) FM.01
 0005 PRINT OCONV(YY,MR2,E) FM.01
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/