RE: [U2] Using Esc

2005-12-23 Thread Keith W. Roberts
Original Message From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Johnson Sent: Wednesday, December 21, 2005 9:24 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Using Esc - Original Message - From: Jacques G. [EMAIL PROTECTED] To: u2-users

Re: [U2] Using Esc

2005-12-22 Thread Mark Johnson
snip I worked with a client a while back and their application only used the BASIC INPUT statement. This caused some garbage data to occasionnally appear in their files. /snip I can honestly say that over 95% of my client's programs are INPUT ANS. Some have INPUT ANS,5 or INPUT ANS,5: or

Re: [U2] Using Esc

2005-12-22 Thread Mark Johnson
, 2005 11:58 AM Subject: Re: [U2] Using Esc I am sick of having to write filter routines for the control characters. It doesn't look good to the users either. On the plus side, many terminal emulators can have their keyboard re-programmed so that when you press a key it sends the key

Re: [U2] Using Esc

2005-12-20 Thread Brian Leach
Mark, AFAIR UV does provide cursor driven input - see the Input @, KeyEdit and KeyTrap statements. It is however pretty horrible. You can't blame the vendors for this one though. The problem has been the mindset of a community that hasn't shared code (how many virtually identical menu runners

Re: [U2] Using Esc

2005-12-20 Thread Mark Johnson
-users@listserver.u2ug.org Sent: Tuesday, December 20, 2005 7:22 AM Subject: Re: [U2] Using Esc Mark, AFAIR UV does provide cursor driven input - see the Input @, KeyEdit and KeyTrap statements. It is however pretty horrible. You can't blame the vendors for this one though. The problem has

Re: [U2] Using Esc

2005-12-20 Thread Drew Henderson
- From: Brian Leach [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Tuesday, December 20, 2005 7:22 AM Subject: Re: [U2] Using Esc Mark, AFAIR UV does provide cursor driven input - see the Input @, KeyEdit and KeyTrap statements. It is however pretty horrible. You can't

Re: [U2] Using Esc

2005-12-20 Thread Jacques G.
We've had code in place for nearly 20 years to handle, at least a little bit, this type of problem. In fields with lots of text, we call a sub for the input that permits most of the editing commands found in line editors (e.g. c/x/a/, append, etc.) Not a great solution, but better

RE: [U2] Using Esc

2005-12-20 Thread Keith W. Roberts
, 2005 7:29 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Using Esc Despite the progress made with conversions from green screen to GUI, my client base for example is virtually 100% green screen. I've been adding a few Accuterm GED programs but not to any huge extent. I believe

Re: [U2] Using Esc

2005-12-20 Thread Jacques G.
I am sick of having to write filter routines for the control characters. It doesn't look good to the users either. On the plus side, many terminal emulators can have their keyboard re-programmed so that when you press a key it sends the key that you want. I've used this feature to send the

RE: [U2] Using Esc

2005-12-20 Thread Baakkonen, Rodney A (Rod) 46K
] Behalf Of Keith W. Roberts Sent: Tuesday, December 20, 2005 10:56 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Using Esc Somebody out there has a product for sale which allows you to turn green-screen apps into gui apps with little to no effort. They still have a gs look, so

RE: [U2] Using Esc

2005-12-20 Thread Keith W. Roberts
Original Message From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jacques G. Sent: Tuesday, December 20, 2005 8:41 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Using Esc We've had code in place for nearly 20 years to handle, at least a little bit, this type

[U2] Using Esc

2005-12-19 Thread Brutzman, Bill
I am trying to add functionality for the Escape Key in UniBasic program for end-users to edit record data with Dynamic Connect and UV. Terminal emulation is AddsVP moving to VT-100. The following code does not behave as intended. Esc = char(251) begin case case Ans = '' ; null

RE: [U2] Using Esc

2005-12-19 Thread Harry Hambrick
] Using Esc I am trying to add functionality for the Escape Key in UniBasic program for end-users to edit record data with Dynamic Connect and UV. Terminal emulation is AddsVP moving to VT-100. The following code does not behave as intended. Esc = char(251) begin case case Ans

Re: [U2] Using Esc

2005-12-19 Thread Leroy Dreyfuss
Subject [U2] Using Esc I am trying to add functionality for the Escape Key in UniBasic program for end-users to edit record data with Dynamic Connect and UV. Terminal emulation is AddsVP moving to VT-100. The following code does not behave as intended

RE: [U2] Using Esc

2005-12-19 Thread Allen E. Elwood
Yup, esc is definitely char 27. Allen E. Elwood www.tortillafc.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Harry Hambrick Sent: Monday, December 19, 2005 10:34 To: u2-users@listserver.u2ug.org Subject: RE: [U2] Using Esc An escape is char(27

Re: [U2] Using Esc

2005-12-19 Thread Results
Bill, Try CRT'ing the ASCII value of ANS to see what Esc is reporting as on this system. I have see 27 (typical), 251, and even 21 on some other terminal emulators. - Chuck The following code does not behave as intended. Esc = char(251) begin case case Ans = '' ; null

RE: [U2] Using Esc

2005-12-19 Thread Brutzman, Bill
PROTECTED] On Behalf Of Results Sent: Monday, December 19, 2005 2:05 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Using Esc Bill, Try CRT'ing the ASCII value of ANS to see what Esc is reporting as on this system. I have see 27 (typical), 251, and even 21 on some other terminal emulators

Re: [U2] Using Esc

2005-12-19 Thread Mark Johnson
of having to write filter routines for the control characters. It doesn't look good to the users either. My 2 cents. Mark Johnson - Original Message - From: Results [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Monday, December 19, 2005 2:04 PM Subject: Re: [U2] Using Esc Bill