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

Discussions about CSEntry
Forum rules
New release: CSPro 8.0
Post Reply
Myintzu San
Posts: 3
Joined: February 5th, 2019, 12:11 am

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

Post by Myintzu San »

How can I do batch delete partial save cases from .dat file?
Gregory Martin
Posts: 1777
Joined: December 5th, 2011, 11:27 pm
Location: Washington, DC

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

Post 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;
Myintzu San
Posts: 3
Joined: February 5th, 2019, 12:11 am

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

Post by Myintzu San »

Thanks in advance.
Post Reply