| Author |
Comment/Response |
Patrick
|
09/22/11 11:52am
Your problem seems to be a confusion over == and =.
You need to assign the variables using a = b, not a == b. a == b represents the assertion that a is equal to b, not the command to set a to have the value of b.
URL: patrick.stevens@btinternet.com, |
|