Save in csv file

volvomann

Active Member
Licensed User
Longtime User
Hallo i have made an app ther ii do div calkulation, the answer is cominig out in sevreal edittextbox, My troubele are to save the result in a csv file so I can get them back in the edithboxes. Can any one give som hint how i can do that, my be a litel an litle test that i leran from.
 

volvomann

Active Member
Licensed User
Longtime User
Seems to me that a Map should be a better solution in this case:
B4X:
Dim m As Map
m.Initialize
m.Put("EditText1", EditText1.Text)
m.Put("EditText2", EditText2.Text)
File.WriteMap(...)

Ok thanks my app calculate bmi fitnesindex ++, if i do like this must I create a new file for evryone i test? or wil they be saved inn a sort off lits?
 
Upvote 0
Top