Re: Very Large Array Storage

2012-03-02 Thread BT
I passed them in. Caution: In any chance you make changes in the values of those 2 parms inside the procedure you will also change the main body values respectively. Sincerely Bruce Sent: Thursday, March 01, 2012 6:17 PM Subject: Re: Very Large Array Storage Hi Dave

Re: Very Large Array Storage

2012-03-01 Thread BT
ave/read a file. Sincerely Bruce Sent: Thursday, March 01, 2012 5:38 PM Subject: Re: Very Large Array Storage My goodness, Bruce! That is help above and beyond and very helpful!! Thank you very much! Dave At 11:58 AM 3/1/2012, you wrote:

Re: Very Large Array Storage

2012-03-01 Thread David Helkenn
My goodness, Bruce! That is help above and beyond and very helpful!! Thank you very much! Dave At 11:58 AM 3/1/2012, you wrote: Hi Dave, I decided to make a clear short program with one procedure call. This uses the dictionary and dynamic array assignments. I added the erase feature to in

Re: Very Large Array Storage

2012-03-01 Thread David Helkenn
/windows/desktop/ms683857%28v=vs.85%29.aspx VB Script ActiveXObject (Only Works In Internet Explorer) http://msdn.microsoft.com/en-us/library/7sw4ddf8(v=VS.85).aspx Sent: Wednesday, February 29, 2012 10:49 PM Subject: Re: Very Large Array Storage Thank you, Bruce. It does help. Of particular

Re: Very Large Array Storage

2012-03-01 Thread David Helkenn
eadid=26874 Warm regards. Martin Webster. --- On Thu, 3/1/12, BT wrote: > From: BT > Subject: Re: Very Large Array Storage > To: gw-scripting@gwmicro.com > Date: Thursday, March 1, 2012, 5:30 AM > > Hi Dave, > > Yes, the underline (_) is a continuation to > the

Re: Very Large Array Storage

2012-03-01 Thread BT
Hi Dave, I decided to make a clear short program with one procedure call. This uses the dictionary and dynamic array assignments. I added the erase feature to insure the previous array was eliminated entirely of all values. I also placed a random procedure/function in this program to allo

Re: Very Large Array Storage

2012-03-01 Thread martin webster
Hi, At the link below this guy describes this subject brilliantly on the officient use of arrays. http://www.codingforums.com/showthread.php?threadid=26874 Warm regards. Martin Webster. --- On Thu, 3/1/12, BT wrote: > From: BT > Subject: Re: Very Large Array Storage > To: gw-

Re: Very Large Array Storage

2012-02-29 Thread BT
(Only Works In Internet Explorer) http://msdn.microsoft.com/en-us/library/7sw4ddf8(v=VS.85).aspx Sent: Wednesday, February 29, 2012 10:49 PM Subject: Re: Very Large Array Storage Thank you, Bruce. It does help. Of particular interest is how 'r(1)' could refer to element in r(1)(1), whe

Re: Very Large Array Storage

2012-02-29 Thread David Helkenn
))(4) = 4096 msgBox " Set 0 element 5 is: " & arrayOfSets( SetName( "Set0"))(4) msgBox " Set 1 element 5 is: " & arrayOfSets( SetName( "Set1"))(4) msgBox " Set 2 element 5 is: " & arrayOfSets( SetName( "Set2"))(4) Sent: Wedn

Re: Very Large Array Storage

2012-02-29 Thread David
the underline charaacter is real enough. Yes, it is a line continuation symbol. - Original Message - From: "David Helkenn" To: Sent: Thursday, March 01, 2012 4:49 AM Subject: Re: Very Large Array Storage Thank you, Bruce. It does help. Of particular interest is how &#

Re: Very Large Array Storage

2012-02-29 Thread David Helkenn
g as you want, but remember that only 60 elements are allowed in an array. I mean dimensions in an array. Meaning 60 numbers inside the outer parens separated by commas. Example ar(1, 2, 3, 4,...60) Sincerely Bruce Sent: Wednesday, February 29, 2012 4:19 PM Subject: RE: Very Large

Re: Very Large Array Storage

2012-02-29 Thread David Helkenn
number inside the dictionary. This would allow you to keep track of all your arrays by name by associating that name to a given number, or row of the array. I hope this helps. Bruce Sent: Wednesday, February 29, 2012 12:09 AM Subject: Re: Very Large Array Storage Thank you, Bruce. I t

Re: Very Large Array Storage

2012-02-29 Thread BT
member that only 60 dimensions in an array. Meaning 60 numbers inside the outer parens separated by commas. Example using numbers to only indicate the dimension number: ar(1, 2, 3, 4,...60) Sincerely Bruce Sent: Wednesday, February 29, 2012 4:19 PM Subject: RE: Very Large Array Storage

Re: Very Large Array Storage

2012-02-29 Thread BT
umber: ar(1, 2, 3, 4,...60) Sincerely Bruce Sent: Wednesday, February 29, 2012 4:19 PM Subject: RE: Very Large Array Storage Hi, Jeff, Here are some specifics although I'm really interested in the approach to solving this sort of problem, not just this specific one. Imagine 8,5

Re: Very Large Array Storage

2012-02-29 Thread BT
that only 60 elements are allowed in an array. I mean dimensions in an array. Meaning 60 numbers inside the outer parens separated by commas. Example ar(1, 2, 3, 4,...60) Sincerely Bruce Sent: Wednesday, February 29, 2012 4:19 PM Subject: RE: Very Large Array Storage Hi, Jeff,

Re: Very Large Array Storage

2012-02-29 Thread BT
AM Subject: Re: Very Large Array Storage Thank you, Bruce. I thought I would use the DynArray facility from the toolkit since I know I have the 50 static entries in the first dimension. If I were doing this in C, I would actually have the elements of this dimension 50 array consist of pointers

RE: Very Large Array Storage

2012-02-29 Thread David Helkenn
u are attempting to accomplish. -Original Message- From: David Helkenn [mailto:dhelk...@san.rr.com] Sent: Tuesday, February 28, 2012 10:10 PM To: gw-scripting@gwmicro.com Subject: Re: Very Large Array Storage Thank you, Bruce. I thought I would use the DynArray facility from the tool

RE: Very Large Array Storage

2012-02-29 Thread Jeff Bishop
Message- From: David Helkenn [mailto:dhelk...@san.rr.com] Sent: Tuesday, February 28, 2012 10:10 PM To: gw-scripting@gwmicro.com Subject: Re: Very Large Array Storage Thank you, Bruce. I thought I would use the DynArray facility from the toolkit since I know I have the 50 static entries in the

Re: Very Large Array Storage

2012-02-28 Thread David Helkenn
y saving of data for future useage either put them in an iniFile or external file as mentioned by others. Bruce Sent: Tuesday, February 28, 2012 12:22 PM Subject: RE: Very Large Array Storage Hello, Thanks for your reply. I'm not actually polling anything. I refered to the collection (

RE: Very Large Array Storage

2012-02-28 Thread Jeff Bishop
: Very Large Array Storage Thank you very much for your help. I do not find the 'recordSet' object Jeff mentioned. It seems that a lot of the growth in experience with these objects is just getting familiar with what they are, what they are named, where they are found, etc. Dave At 10:

Re: Very Large Array Storage

2012-02-28 Thread David Helkenn
Thank you very much for your help. I do not find the 'recordSet' object Jeff mentioned. It seems that a lot of the growth in experience with these objects is just getting familiar with what they are, what they are named, where they are found, etc. Dave At 10:04 AM 2/28/2012, you wrote: Well,

Re: Very Large Array Storage

2012-02-28 Thread BT
data above that is lost. I hope this helps. Any saving of data for future useage either put them in an iniFile or external file as mentioned by others. Bruce Sent: Tuesday, February 28, 2012 12:22 PM Subject: RE: Very Large Array Storage Hello, Thanks for your reply. I'm

Re: Very Large Array Storage

2012-02-28 Thread David
Well, as Jeff already pointed out, you could use either a multi-dimentional array, or a dictionary. The dictionary approach, is a quite simple one, first you get hold of the structure, and get used to work with it. One benefit is, that the dictionary does not have any preset limit. It simply gr

RE: Very Large Array Storage

2012-02-28 Thread Jeff Bishop
10:22 AM To: gw-scripting@gwmicro.com Subject: RE: Very Large Array Storage Hello, Thanks for your reply. I'm not actually polling anything. I refered to the collection (not a technical term, just a set) of arrays to hold integers in an organized manner. They are more like mapping arrays a

RE: Very Large Array Storage

2012-02-28 Thread David Helkenn
Hello, Thanks for your reply. I'm not actually polling anything. I refered to the collection (not a technical term, just a set) of arrays to hold integers in an organized manner. They are more like mapping arrays and ordered integers. An anology would be an static array of of dynamic arrays li

RE: Very Large Array Storage

2012-02-28 Thread Jeff Bishop
What kind of database are you pulling from? Will you be using SQL to perform the retrieval? -Original Message- From: David Helkenn [mailto:dhelk...@san.rr.com] Sent: Tuesday, February 28, 2012 8:55 AM To: gw-scripting@gwmicro.com Cc: dhelk...@san.rr.com Subject: Very Large Array Storage