RE: [U2] UniBasic Performance Question

2004-05-19 Thread Dennis Bartlett
> So the execution speed of the code does not change. You're missing the point - Sure, the compile time versus run time processing is a factor, but the fact of the matter here is not the EQUATE itself but the data it is equating to... At compile time the compiler does not have access to the con

RE: [U2] UniBasic Performance Question

2004-05-18 Thread Ross Ferris
No change Ross Ferris Stamina Software Visage  an Evolution in Software Development >-Original Message- >From: [EMAIL PROTECTED] [mailto:owner-u2- >[EMAIL PROTECTED] On Behalf Of Fawaz Ashraff >Sent: Wednesday, 19 May 2004 5:27 AM >To: U2 Users Discussion List >Subj

RE: [U2] UniBasic Performance Question

2004-05-18 Thread David Jordan
ve a look at passing the fields as plain text and use .Net serialization to build the xml file. Regards David Jordan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gordon Glorfield Sent: Wednesday, 19 May 2004 6:03 AM To: '[EMAIL PROTECTED]' Subj

Re: [U2] UniBasic Performance Question

2004-05-18 Thread FFT2001
In a message dated 5/18/2004 3:26:49 PM Eastern Daylight Time, [EMAIL PROTECTED] writes: > Hi All, > > I have a UniBasic program with hundreds of equate > statements like > > EQU V.SEC.SYNONYM TO > COURSE.SECTIONS.REC.TABLE Fawaz, equates are processed at compile time not at run time. Using "=

Re: [U2] UniBasic Performance Question

2004-05-18 Thread FFT2001
In a message dated 5/18/2004 3:26:49 PM Eastern Daylight Time, [EMAIL PROTECTED] writes: > Hi All, > > I have a UniBasic program with hundreds of equate > statements like > > EQU V.SEC.SYNONYM TO > COURSE.SECTIONS.REC.TABLE Fawaz, equates are processed at compile time not at run time. Using "=

RE: [U2] UniBasic Performance Question

2004-05-18 Thread Don Verhagen
EQU V.SEC.SYNONYM TO COURSE.SECTIONS.REC.TABLE PRINT.VAR = V.SEC.SYNONYM verus PRINT.VAR = COURSE.SECTIONS.REC.TABLE I'm not sure but I think, in this case, elimating the EQUATE would be less keystrokes. Don >>> [EMAIL PROTECTED] 4:03:24 PM 05/18/2004 >>> Fawaz, No, it won't speed up your

RE: [U2] UniBasic Performance Question

2004-05-18 Thread Gordon Glorfield
Fawaz, No, it won't speed up your app. It will speed up your getting carpel tunnel syndrome. Equates are used for several purposes. In this case it looks as if they are being used to reduce the number of keystrokes the programmer will have to make. HTH, Gordon J. Glorfield Sr. Applications De

[U2] UniBasic Performance Question

2004-05-18 Thread Fawaz Ashraff
Hi All, I have a UniBasic program with hundreds of equate statements like EQU V.SEC.SYNONYM TO COURSE.SECTIONS.REC.TABLE and only thing they do is assign it to a PRINT.VAR PRINT.VAR = V.SEC.SYNONYM:" ":.. I am planning to take off the equate and assign the variable directly to the PRI