Re: [U2] Upper Case Input

2011-09-30 Thread Israel, John R.
-Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Trevor Fulton Sent: Friday, September 30, 2011 2:48 AM To: U2 Users List Subject: Re: [U2] Upper Case Input Yes there is, In /HK.CONTROL the field "Subr End SB.INPUT&qu

Re: [U2] Upper Case Input

2011-09-30 Thread Boydell, Stuart
In the conv slot of the field defn of the dict or in the field defn, F6 for the screen set the override conv to MCU[I -Original Message- From: Israel, John R. Sent: Friday, 30 September 2011 6:49 To: 'U2 Users List' Subject: [U2] Upper Case Input I am not sure we even want to do this bu

Re: [U2] Upper Case Input

2011-09-29 Thread Trevor Fulton
Yes there is, In /HK.CONTROL the field "Subr End SB.INPUT" allows you to run a piece of code after every input into SB. In this you need something like IF PARMS(30)<38> # 1 THEN INPVAL = OCONV(INPVAL,"MCU") VALUE = OCONV(VALUE,"MCU") END The PARMS(30)<3

Re: [U2] Upper Case Input

2011-09-29 Thread Bill Brutzman
Yes... it is simple... but it may take some time to implement. Just start to change the input prompts on the U2 side to things like... Input Ans Ans = upcase(Ans) And then recompile. When I started here at this company some time ago... as programs were updated... in introduc