Date: Thu, 4 May 2000 08:56:59 -0400
Reply-To: Richard DeVenezia <radevenz@IX.NETCOM.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Richard DeVenezia <radevenz@IX.NETCOM.COM>
Organization: MindSpring Enterprises
Subject: Re: AF organizational chart, _GET_CURRENT_ method
Pete:
Try this little piece of SCL
init:
list = makelist ();
rc = insertn (list, 123456789012345);
v = getitemn (list, 1);
put v=;
list = dellist(list);
return;
Compile and testaf
do you see
V=123456789012345
in the log or message window ?
I do, if you do also,
my guess that host platform rounding within the SCL list routines is not the
problem, but perhaps some internal aspect (e.g. a value being stored in an
int instead of a longint or a double or an overflowed type conversion) of
the org chart class.
Some more detail on how the value gets into the node could help track down a
fix.
Rich
<pete2108@my-deja.com> wrote in message news:8ep7bp$qtr$1@nnrp1.deja.com...
> Hi group,
>
> Using the AF organizational chart, I'm trying to fetch the variable
> value of the currently selected node.
>
> I'm using the _GET_CURRENT_-method, which returns a number of attributes
> into a SCL-list.
>
> The node-value I'm trying to fetch is 15. in length. I only manage to
> fetch values that are 10. or smaller. Values larger than 10. turn into
> pretty weird negative numbers.
>
> BUT,
> SCL-list items can hold as much as 255.
>
> Any reason why I can't fetch all of the 15.-value ?
>
> thanks.
>
>
> Sent via Deja.com http://www.deja.com/
> Before you buy.
|