Posts: 60
Threads: 24
Joined: Jan 2008
Hey if im using val
and i getwintext from a dialog say it gets 5
and use +1 in a functions
it will do 51 but i want it to do 6
anyway round this :?:
Posts: 1,336
Threads: 61
Joined: Jul 2006
Posts: 473
Threads: 33
Joined: Aug 2007
Macro ( Macro83 )
str a="5";int b
b=val(a)
b+1
out b
You should search the forum, better, before you make a post.
Taking on Quick Macros one day at a time
Posts: 60
Threads: 24
Joined: Jan 2008
Yea but, i need it to go up 1 every time :?: so 1,2,3,4,5,6,7,8,9.
like that.
thanks.
Posts: 473
Threads: 33
Joined: Aug 2007
Macro ( Macro83 )
str a="5";int b
b=val(a)
;top
b+1
out b
if b=15
,end
else
,goto top
Taking on Quick Macros one day at a time