Old limit. No longer applies.
-----Original Message----- From: Mark Eastwood <[email protected]> To: 'U2 Users List' <[email protected]> Sent: Fri, Jul 27, 2012 11:02 am Subject: Re: [U2] Array Types And don't DIM arrays have a limit - something like 64000 elements? i.e. can't DIM X(1000,1000) -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Israel, John R. Sent: Friday, July 27, 2012 12:28 PM To: 'U2 Users List' Subject: Re: [U2] Array Types SPEED! Other than the extra time spent to build it, it is MUCH faster to access VAR(1000) than to access VAR<1000>. If I know my variables are going to be small or I am doing reads, yeah, I use dynamic arrays. If I am building some big arrays in a program, I usually use dim arrays. One thing you CAN'T do is insert a value. If I have a real ugly array in a pgm that needs 1 more level of delimiting beyond @SVM, I will use a DIM array as my first level. Yeah, I know @TMs exist, but the functions do not know how to use them. John -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Bill Brutzman Sent: Friday, July 27, 2012 11:16 AM To: U2 Users List Subject: [U2] Array Types I am surprised that anyone uses dimensioned arrays. I use dynamic arrays for everything. If there are any advantages that dimension arrays have over dynamic... please let me know... without getting sentimental. --Bill _______________________________________________ U2-Users mailing list [email protected] http://listserver.u2ug.org/mailman/listinfo/u2-users _______________________________________________ U2-Users mailing list [email protected] http://listserver.u2ug.org/mailman/listinfo/u2-users _______________________________________________ U2-Users mailing list [email protected] http://listserver.u2ug.org/mailman/listinfo/u2-users _______________________________________________ U2-Users mailing list [email protected] http://listserver.u2ug.org/mailman/listinfo/u2-users
