I found this function to save on an array the string from Ini FIle
FUNCTION GetIniArray(cSection,cFile) // reads a complete section from a *.ini file into an array
LOCAL nI
LOCAL aString := {" "," "}
aEntry := GetPvProfA(cSection,NIL, "", cFile)
? MlCount(aEntry)
IF EMPTY(aEntry)
return {}
ENDIF
for nI:=1 to LEN(aEntry)
AADD(aString,{aEntry,GetPvProfString(cSection,aEntry[nI],"",cFile)})
next
return aString
BUt I need GetPvProfA and the I wish an array with two fields
sample
[Cars]
Alfa= mmmmmmm
Opel=lllllllll
Daihatsu=oooooooo
An array two field aentry and string of each aentry