Dear All !!!
Is it possible to use a Batch edit application on android devise ?
Batch Edit application on Android devise
Batch Edit application on Android devise
Sincerely yours !
-
- Posts: 1846
- Joined: December 5th, 2011, 11:27 pm
- Location: Washington, DC
Re: Batch Edit application on Android devise
Right now Android only supports data entry (CSEntry). However, you can loop through every case in your file if you have the dictionary as an external dictionary. You can do something like this:
forcase DICT_NAME do
// do something
endfor;
If you wanted to modify data, you could do this, though it will modify the case in the data file (as opposed to batch, which modifies the case to another output file):// do something
endfor;
forcase DICT_NAME do
// do something
writecase(DICT_NAME);
endfor;
// do something
writecase(DICT_NAME);
endfor;
Re: Batch Edit application on Android devise
Ok! I understand. I have already used these functions on data entry programs. Thank you Dear Gregory.
Sincerely yours !