Saving and reading data (.ini file) SOLVED
I want my program to read a datafile on startup and save a datafile when the program ends. In Visual Basic I use this:
Public Sub INIfilesave()
Close #1
Open (App.Path & "\HLPS.ini") For Output As #1
Write #1, clasoft
Write #1, maxtoweight
Write #1, maxldweight
Write #1, pallpos16
Close #1
End Sub
Public Sub INIfileopen()
Open (App.Path & "\HLPS.ini") For Input As #1
Input #1, clasoft
Input #1, maxtoweight
Input #1, maxldweight
Input #1, pallpos16
Close #1
End Sub
How do I do it in Basic4android?
Regards Claus