Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Error stack
Message
 
To
02/01/2001 13:31:36
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
00458540
Message ID:
00458548
Views:
16
You can use something like this:
*----------------------
Procedure iCallStack
LParameter pProgram
Local ia, i,retval
retval=""
ia=1
do WHILE LEN(program(ia)) # 0 and program(ia)#pProgram
ia=ia+1
enddo

for i=ia to 1 step -1
retval=iif(i=ia, program(i),retval+" <- "+program(i))
endfor

return retval
Previous
Reply
Map
View

Click here to load this message in the networking platform