[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: returning value of previous calc?



PureBytes Links

Trading Reference Links

I'm not really familiar with the details of string handling in EL, but I've used
long strings in lieu of arrays in VB and C++ where I needed to save an array in
a control property which supports a string. If EL strings can be a couple of
hundred characters, you could iterate the calc, convert the result to a string
of _fixed length_ e.g. "0012", and then append it to a string. If each element
is fixed length, you could use a routine to extract the nth value. All depends
on EL string support.

Earl

-----Original Message-----
From: Gary Funck <gary@xxxxxxxxxxxx>
To: Bob Fulks <bfulks@xxxxxxxxxxxx>; omega-list@xxxxxxxxxx
<omega-list@xxxxxxxxxx>
Cc: Earl Adamy <eadamy@xxxxxxxxxx>
Date: Thursday, February 26, 1998 8:22 AM
Subject: Re: returning value of previous calc?


>take things to an extreme I could copy my 50 element array into 50
>separate variables, and return the value of the proper var., selected
>by the input argument, but that is probably taking things a little
>too far. :)  Guess I'll just resort to cut/paste of the entire
>function where I need it.