hi everybody i don't understand why i have this error
Any idea?
hi everybody i don't understand why i have this error
Any idea?
It seems that lSaveObject() is not supported by FWH.
EMG
So how can i save an array on disc and restore it?
function Main()
local aInfo := { { "one", 1, .T. }, { "two", 2, .F. }, { "three", 3, Date() } }
local cText := ASave( aInfo )
aInfo := nil
aInfo = ARead( cText )
MsgInfo( Len( aInfo ) )
MsgInfo( aInfo[ 1 ][ 1 ] )
MsgInfo( aInfo[ 3 ][ 3 ] )
return nil
And i save the text in a .txt file.
Thank you James and Enrico