Now with using the Menu. Say I ran one function and I accidentily try to run another one a box will come up and say You are already running a function. And it will not run the second function can you help me with this? :?:
Posts: 12,071
Threads: 140
Joined: Dec 2002
Place this at the beginning of the function
if(getopt(nthreads)>1) mes- "already running"
or in menu. Example:
a :if(getopt(nthreads)>1) mes- "already running"; else mes 1
b :if(getopt(nthreads)>1) mes- "already running"; else mes 2
This works in functions and menus, but not in macros.
So I make A function and put the first code in there and thats it? :?: