RE: [U2] [UV] [UB] Equating Two Arrays in UniBasic

2008-07-11 Thread Edward Brown
Of Geoffrey Mitchell Sent: 10 July 2008 22:44 To: u2-users@listserver.u2ug.org Subject: Re: [U2] [UV] [UB] Equating Two Arrays in UniBasic Is R.New or R.SOD being declared as a dimensioned array somewhere? If both are dynamic arrays, there should be no problem. I get the error you describe if I try

RE: [U2] [UV] [UB] Equating Two Arrays in UniBasic

2008-07-10 Thread David Jordan
Hi Bill The variable has probably been set up as a dimensioned array somewhere else in the program or an include file. Ie DIM Var(10) Regards David Jordan Managing Consultant --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

RE: [U2] [UV] [UB] Equating Two Arrays in UniBasic

2008-07-10 Thread Brutzman, Bill
It appears that one of my predecessors invoked a mat command. I am in the process of purging errant uses of it. --Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Brutzman, Bill Sent: Thursday, July 10, 2008 4:40 PM To: 'u2-users@listserver.u2ug.org'

Re: [U2] [UV] [UB] Equating Two Arrays in UniBasic

2008-07-10 Thread Geoffrey Mitchell
Is R.New or R.SOD being declared as a dimensioned array somewhere? If both are dynamic arrays, there should be no problem. I get the error you describe if I try to assign a dimensioned array to a dynamic array variable, such as: 0001: DIM X(100) 0002: Y= 0003: X=Y The other way around