Error Messages/41270

< Error Messages
Revision as of 23:18, 4 January 2010 by Lchrisman (talk | contribs) (Created page with '= Error Text = :Bad «type», "Real", passed to SipEncode. Must be "Single", "Double", "Binary", "Integer", or "Float", or "S", "D", "B", "I", or "F". = Cause = The [[Sip…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Error Text

Bad «type», "Real", passed to SipEncode. Must be "Single", "Double", "Binary", "Integer", or "Float", or "S", "D", "B", "I", or "F".

Cause

The SipEncode function handles five types of encoding, as indicated in the error message. You've passed an unrecognized name (in the example, "Real") as the «type» parameter. This would happen, for example, in the following example:

SipEncode(Energy_consumption, type:"Real")

Remedy

Change the «type» parameter to one of the five recognized values, e.g.:

SipEncode(Energy_consumption, type:"Single")

See Also

Comments


You are not allowed to post comments.