Error Messages/41051


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 value.

Cause

This error occurs when you do something like:

Local x := 1..5 do Handle(x)

The Local..Do construct declares a local value, but a local value 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 value 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 identifier using the Index..Do construct, rather than using the Var..Do construct.

See Also

Comments


You are not allowed to post comments.