Creeder's example isn't the first solution I thought of, but its the best and cleanest way to get the behaviour you want.
If you ever do need to look at the list of executing programs, though, you can use the PROGRAM() function. This example loops through all running VFP programs and displays their names on the screen:
Code:
for nPrograms = 1 to program(-1)
? program(nPrograms)
endfor
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.