Page 1 of 1

How can I do batch delete partial save cases from .dat file?

Posted: February 5th, 2019, 12:16 am
by Myintzu San
How can I do batch delete partial save cases from .dat file?

Re: How can I do batch delete partial save cases from .dat file?

Posted: February 5th, 2019, 6:50 am
by Gregory Martin
You can do this in logic. If you were using .csdb, you could do this in a batch application, but to get the partial save status for a text file (.dat), then you have to do this in an entry application. Attach your dictionary as an external dictionary to a dummy application and then write logic like this:
forcase DICT_NAME do

    if ispartial(DICT_NAME) then
        delcase(DICT_NAME);
    endif;

endfor;

Re: How can I do batch delete partial save cases from .dat file?

Posted: March 18th, 2019, 11:10 pm
by Myintzu San
Thanks in advance.