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 evaluate

{Blocked Content} RE: [U2] @VARIABLES

2007-03-24 Thread Womack, Adrian
. 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 snip Maybe I'm missing something. Since I still have a few old Microdata clients and I miss using regular Includes

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

2007-03-24 Thread MAJ Programming
it be after the logical END and just part of the source code? Thanks Mark Johnson - Original Message - From: Womack, Adrian [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Saturday, March 24, 2007 5:51 AM Subject: {Blocked Content} RE: [U2] @VARIABLES Warning: This message has had

Re: [U2] @VARIABLES

2007-03-23 Thread MAJ Programming
, 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 TO is for equating to an expression, whereas

Re: [U2] @VARIABLES

2007-03-23 Thread MAJ Programming
BP file. Thanks in advance. Mark Johnson - Original Message - From: Womack, Adrian [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Friday, March 23, 2007 12:20 AM Subject: RE: [U2] @VARIABLES Nothing wrong with TO. LIT means literally, I usually use TO for numbers and LIT

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/

[U2] @VARIABLES

2007-03-22 Thread Sanjeebkumar Sarangi
Hi CRT @(2,15):@(-4):@(2,15): Basically when we use @(-4) ,it should go to the end of line...but when I tried the above statement I could not understand what it exactly did...I also tried by giving different x and y coordinate values ..ie CRT @(23,45):@(-4):@(23,45)..but the result seemed

RE: [U2] @VARIABLES

2007-03-22 Thread Brutzman, Bill
@listserver.u2ug.org Subject: [U2] @VARIABLES Hi CRT @(2,15):@(-4):@(2,15): Basically when we use @(-4) ,it should go to the end of line...but when I tried the above statement I could not understand what it exactly did...I also tried by giving different x and y coordinate values ..ie CRT @(23,45):@(-4

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 cr at the end -Kevin [EMAIL

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

RE: [U2] @VARIABLES

2007-03-22 Thread Buffington, Wyatt
:52 AM To: u2-users@listserver.u2ug.org Subject: [U2] @VARIABLES Hi CRT @(2,15):@(-4):@(2,15): Basically when we use @(-4) ,it should go to the end of line...but when I tried the above statement I could not understand what it exactly did...I also tried by giving different x and y coordinate values

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

RE: [U2] @VARIABLES

2007-03-22 Thread Perry Taylor
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sanjeebkumar Sarangi Sent: Thursday, March 22, 2007 8:52 AM To: u2-users@listserver.u2ug.org Subject: [U2] @VARIABLES Hi CRT @(2,15):@(-4):@(2,15): Basically when we use @(-4) ,it should go to the end of line...but when I tried the above statement

Re: [U2] @Variables

2007-03-22 Thread Mats Carlid
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 various

RE: [U2] @Variables

2007-03-22 Thread Brutzman, Bill
, 2007 7:52 AM To: u2-users@listserver.u2ug.org Subject: [U2] @VARIABLES Hi CRT @(2,15):@(-4):@(2,15): Basically when we use @(-4) ,it should go to the end of line...but when I tried the above statement I could not understand what it exactly did...I also tried by giving different x and y coordinate

Re: [U2] @VARIABLES

2007-03-22 Thread MAJ Programming
, 2007 8:56 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 **Define various ways

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 ;*

Re: [U2] @VARIABLES

2007-03-22 Thread MAJ Programming
, put them in an INCLUDE for consistency. My 2 cents Mark JOhnson - Original Message - From: Womack, Adrian [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Thursday, March 22, 2007 7:29 PM Subject: RE: [U2] @VARIABLES Are you guys aware of the universe supplied include

RE: [U2] @VARIABLES

2007-03-22 Thread Womack, Adrian
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.u2ug.org Subject: Re: [U2] @VARIABLES Two things: 1. What does LIT