Files
roacont/COMUN/utile/Teste/test.prg
Marius Mutu 0acdff9647 Initial import of ROACONT (Visual FoxPro accounting app) into git
Migrated from the ROACONT SVN trunk working copy for hosting on gitea.romfast.ro.
2026-07-07 13:16:59 +03:00

24 lines
354 B
Plaintext

lcFile = FORCEEXT(SYS(16),'prg')
lnRows = APROCINFO(laproc,lcFile)
lcProcedures = ""
FOR i = 1 TO lnRows
IF LOWER(laproc[i,3]) = 'procedure'
lcProcedures = lcProcedures + laproc[i,1] + CHR(13) + CHR(10)
ENDIF
ENDFOR
MESSAGEBOX(lcProcedures)
PROCEDURE test1
ENDPROC && test1
PROCEDURE test2
ENDPROC && test2
PROCEDURE test31
ENDPROC && test31