Difference between revisions of "Error Messages/41051"
AManandhar (talk | contribs) m (→What is means) |
|||
Line 1: | Line 1: | ||
− | + | [[Category: Error messages]] | |
− | + | ==Error message text== | |
− | |||
− | = | + | <pre style="background:white; border:white; margin-left: 1em; font-style:italic"> |
+ | In the call to function Handle, the first parameter, «X», does not identify a valid object. | ||
+ | In this case, you are attempting to take the handle of a temporary local variable. | ||
+ | </pre> | ||
+ | |||
+ | == Cause == | ||
This error occurs when you do something like: | This error occurs when you do something like: | ||
− | + | :<code>Var x := 1..5 do Handle(x)</code> | |
− | The [[Var..Do]] construct declares a local variable, but a local variable is not an actual Analytica object the way a global Variable or even a [[Index..Do|local index]] is. Since it isn't an object, you cannot have a handle to it. | + | The [[Var..Do]] construct declares a local variable, but a [[Local Variables|local variable]] is not an actual Analytica object the way a global Variable or even a [[Index..Do|local index]] is. Since it isn't an object, you cannot have a handle to it. |
− | This particular error is new to release 4.2. The situation in which it arises, where the local variable is defined to hold an unindexed list, would have permitted the handle to be taken in release 4.1, but the [[handle]] obtained was to an internal temporary object that had no identifier and displayed as a lone dot. This undesirable situation is now flagged in Analytica 4.2. | + | This particular error is new to release [[Analytica 4.2]]. The situation in which it arises, where the local variable is defined to hold an unindexed list, would have permitted the handle to be taken in release 4.1, but the [[handle]] obtained was to an internal temporary object that had no identifier and displayed as a lone dot. This undesirable situation is now flagged in Analytica 4.2. |
− | = | + | == Remedies == |
If you feel you really do want to take the [[handle]] of x, perhaps because you want a [[handle]] to an index object, then you probably intended to declare your local variable using the [[Index..Do]] construct, rather than using the [[Var..Do]] construct. | If you feel you really do want to take the [[handle]] of x, perhaps because you want a [[handle]] to an index object, then you probably intended to declare your local variable using the [[Index..Do]] construct, rather than using the [[Var..Do]] construct. | ||
+ | |||
+ | ==See Also== | ||
+ | * [[Handle]] | ||
+ | * [[Local Variables]] | ||
+ | * [[Objects and Values]] | ||
+ | * [[Var..Do]] | ||
+ | * [[Index..Do]] | ||
+ | * [[Arrays and Indexes]] |
Revision as of 22:02, 6 April 2016
Error message text
In the call to function Handle, the first parameter, «X», does not identify a valid object. In this case, you are attempting to take the handle of a temporary local variable.
Cause
This error occurs when you do something like:
Var x := 1..5 do Handle(x)
The Var..Do construct declares a local variable, but a local variable is not an actual Analytica object the way a global Variable or even a local index is. Since it isn't an object, you cannot have a handle to it.
This particular error is new to release Analytica 4.2. The situation in which it arises, where the local variable is defined to hold an unindexed list, would have permitted the handle to be taken in release 4.1, but the handle obtained was to an internal temporary object that had no identifier and displayed as a lone dot. This undesirable situation is now flagged in Analytica 4.2.
Remedies
If you feel you really do want to take the handle of x, perhaps because you want a handle to an index object, then you probably intended to declare your local variable using the Index..Do construct, rather than using the Var..Do construct.
Enable comment auto-refresher