Sunday, April 24, 2011

1067: Implicit coercion of a value of type int to an unrelated type String. « Web Shines


Error: 1067: Implicit coercion of a value of type int to an unrelated type String.
Buggy Code:
res2.text = res; } ]]>

Fixed Code:

res2.text = res.toString(); // 11 } ]]> Why: Text fields contains strings not numbers, so need to do the typecasting. Share this:

No comments:

Post a Comment