I must add on a array the name of exe whith
AADD(afiles, GetModuleFileName( GetInstance() ))
How I can make to see if the name of exe is allready on this array ?
I need it because I load before ( at init of my application) the array from file INI
FOR n = 1 To nMaxItems
capplication:=GetPvProfString("APPLICATIONS", alltrim(str(n)),,cInifile)
IF ! Empty(capplication)
AADD(aFiles,capplication)
ENDIF
NEXT
Any help ?