Error Messages/40113

< Error Messages
Revision as of 22:12, 29 January 2010 by AManandhar (talk | contribs) (Created page with '= Error Message Examples = Local variable name PresentValue already in use. = Cause = You have defined the same local variable again using Var. Local variable PresentValue i…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Error Message Examples

Local variable name PresentValue already in use.

Cause

You have defined the same local variable again using Var.

Local variable PresentValue is being defined twice in the example below:
... Var PresentValue := C/((1+i)^t); ... Var PresentValue := C/i; ...

Remedy

  • Change one of the variable names to make both unique.
  • Remove the Var keyword to assign a different value to the local variable already defined.



You are not allowed to post comments.

Comments
<comments />