Re: [U2] @Variables

2007-03-27 Thread Anthony W. Youngman
In message <[EMAIL PROTECTED]>, "Brutzman, Bill" <[EMAIL PROTECTED]> writes I was right... The BOLD thing @(-81), @(-82) does not work with Dynamic Connect. If it doesn't, then it's probably because either (a) it's not defined for that term-type on the UniVerse system, so the two variables eva

Re: {Blocked Content} RE: [U2] @VARIABLES

2007-03-24 Thread MAJ Programming
he program (before the logical END) or could it be after the logical END and just part of the source code? Thanks Mark Johnson - Original Message - From: "Womack, Adrian" <[EMAIL PROTECTED]> To: Sent: Saturday, March 24, 2007 5:51 AM Subject: {Blocked Content} RE: [

{Blocked Content} RE: [U2] @VARIABLES

2007-03-24 Thread Womack, Adrian
mpile time. From: [EMAIL PROTECTED] on behalf of MAJ Programming Sent: Fri 23/03/2007 9:55 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] @VARIABLES Maybe I'm missing something. Since I still have a few old Microdata clients and I miss using regula

RE: [U2] @Variables

2007-03-23 Thread Brutzman, Bill
I was right... The BOLD thing @(-81), @(-82) does not work with Dynamic Connect. --Bill --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] @VARIABLES

2007-03-23 Thread MAJ Programming
in the Includes redundantly in each BP file. Thanks in advance. Mark Johnson - Original Message - From: "Womack, Adrian" <[EMAIL PROTECTED]> To: Sent: Friday, March 23, 2007 12:20 AM Subject: RE: [U2] @VARIABLES > Nothing wrong with "TO". LIT means "l

Re: [U2] @VARIABLES

2007-03-23 Thread MAJ Programming
23, 2007 12:20 AM Subject: RE: [U2] @VARIABLES > Nothing wrong with "TO". LIT means "literally", I usually use TO for > numbers and LIT for everything else. Using LIT with strings containing > spaces is a little clearer than using TO. The help for EQUATE states > &

RE: [U2] @VARIABLES

2007-03-22 Thread Womack, Adrian
all of our systems. Most of our programs will have five or six INCLUDES at the top and then they drop straight into the code. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of MAJ Programming Sent: Friday, 23 March 2007 1:53 PM To: u2-users@listserver.u2u

Re: [U2] @VARIABLES

2007-03-22 Thread MAJ Programming
ng to use many equates, put them in an INCLUDE for consistency. My 2 cents Mark JOhnson - Original Message - From: "Womack, Adrian" <[EMAIL PROTECTED]> To: Sent: Thursday, March 22, 2007 7:29 PM Subject: RE: [U2] @VARIABLES > Are you guys aware of the universe supp

RE: [U2] @VARIABLES

2007-03-22 Thread Womack, Adrian
Are you guys aware of the universe supplied include: ATFUNCTIONS.INS.IBAS (or ATFUNCTIONS.H) which resides in .../uv/INCLUDE Here's an extract: EQUATE IT$CSTO -1 ;* clear screen (ANSI) EQUATE IT$CAH TO -2 ;* cursor absolute home (ANSI) EQUATE IT$CLEOS TO -3 ;* cle

Re: [U2] @VARIABLES

2007-03-22 Thread MAJ Programming
6 AM Subject: RE: [U2] @VARIABLES > We define variables for the various @ statements > > **Screen clearing options > CS = @(-1) ;**Clear Screen > EOS = @(-3) ;**Clear to End Of Screen > EOL = @(-4) ;**Clear to End Of Line > >

RE: [U2] @Variables

2007-03-22 Thread Brutzman, Bill
What terminal emulator is in use there... Dynamic Connect, AccuTerm...? Please advise. --Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Buffington, Wyatt Sent: Thursday, March 22, 2007 9:56 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2

Re: [U2] @Variables

2007-03-22 Thread Mats Carlid
hen I last needed it) -- mats Please advise. --Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Buffington, Wyatt Sent: Thursday, March 22, 2007 9:56 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] @VARIABLES We define variables for the va

RE: [U2] @VARIABLES

2007-03-22 Thread Perry Taylor
@(-4) typically clears from the current cursor position to the end of the line, leaving the cursor position unchanged. So technically.. CRT @(2,15): @(-4): Is effectively the same as CRT @(2,15): @(-4): @(2,15): Does this answer your question? Perry -Original Message- From: [EMAIL

RE: [U2] @VARIABLES

2007-03-22 Thread brian
Hi @(-4) means 'clear the screen to end of line'. It does not reposition the cursor. So for example in the line below it should clear any previous text from the last entry - typically when proving a prompt. Similarly, @(-3) clears to end of screen. These, of course, assume that the terminal co

RE: [U2] @VARIABLES

2007-03-22 Thread Buffington, Wyatt
We define variables for the various @ statements **Screen clearing options CS = @(-1) ;**Clear Screen EOS = @(-3) ;**Clear to End Of Screen EOL = @(-4) ;**Clear to End Of Line **Define various ways to emphasize certain data/labels SBV = @

Re: [U2] @VARIABLES

2007-03-22 Thread Martin Phillips
Hi Sanjeeb, CRT @(2,15):@(-4):@(2,15): Three elements: @(2,15) positions to column 2 of line 15. @(-4) clears the current line from the cursor position onwards. @(2,15) positions the cursor again but is not needed as @(-4) doesn't move it. @(23,45) Really? This is column 23 of line 45

RE: [U2] @VARIABLES

2007-03-22 Thread Kevin King
> CRT @(2,15):@(-4):@(2,15): CRT = print to the screen @(2,15) = move the cursor to column 2, row 15 : = ...then... @(-4) = Erase any characters found to the end of the line : = ...then... @(2,15) = reposition the cursor to column 2, row 15 : = ...and do not issue a at the end -Kevin [EMAIL PROT

RE: [U2] @VARIABLES

2007-03-22 Thread Brutzman, Bill
The program is positioning the cursor at (2,15)... clearing the line... and then re-positioning the cursor back at (2,15). --Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Sanjeebkumar Sarangi Sent: Thursday, March 22, 2007 8:52 AM To: u2-users@listse