Batch Edit application on Android devise

Discussions about creating CAPI applications to run on Android devices
Forum rules
New release: CSPro 8.0
Post Reply
Boni
Posts: 75
Joined: February 25th, 2020, 5:53 am

Batch Edit application on Android devise

Post by Boni »

Dear All !!!
Is it possible to use a Batch edit application on android devise ?
Sincerely yours !
Gregory Martin
Posts: 1783
Joined: December 5th, 2011, 11:27 pm
Location: Washington, DC

Re: Batch Edit application on Android devise

Post by Gregory Martin »

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):
forcase DICT_NAME do
    // do something
   
writecase(DICT_NAME);
endfor;
Boni
Posts: 75
Joined: February 25th, 2020, 5:53 am

Re: Batch Edit application on Android devise

Post by Boni »

Ok! I understand. I have already used these functions on data entry programs. Thank you Dear Gregory.
Sincerely yours !
Post Reply