Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Error stack
Message
 
À
02/01/2001 13:31:36
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
Divers
Thread ID:
00458540
Message ID:
00458548
Vues:
17
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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform