Re: Not getting any result..
Check your methods for adding / decreasing speed.
For the first thing, myint+1 does not add anything to your myint variable. Use myint+=1 (same as myint = myint+1). Also, you allow inifinite modification in the other method, any checking applies only to the the method with param.
Re: Not getting any result..
Hi Londbrok,
thanks for helping me, I've change the return type as you said ..
but what I don't understand is , why my variable doesn't received in any method ..
Re: Not getting any result..
Quote:
but what I don't understand is , why my variable doesn't received in any method ..
Dont know what you mean by that? Show the changes you made, please use [Code] tags
Re: Not getting any result..
ok Londbrok I've got it ...
what I meant was that when I create new object the method doesn't recognize it
but i found the problem it was incorrect syntax...
Thanks very much Londbrock..