Search found 1775 matches

by Gregory Martin
April 4th, 2018, 3:19 pm
Forum: Entry
Topic: Dictionary cannot be read by CSPro 7.0
Replies: 10
Views: 8586

Re: Dictionary cannot be read by CSPro 7.0

That isn't normal. What does your .pnc file look like?
by Gregory Martin
April 4th, 2018, 9:29 am
Forum: Entry
Topic: Dictionary cannot be read by CSPro 7.0
Replies: 10
Views: 8586

Re: Dictionary cannot be read by CSPro 7.0

You can use text files on CSPro 7.1.
by Gregory Martin
April 4th, 2018, 7:59 am
Forum: Android
Topic: Installing version 7.0
Replies: 7
Views: 6673

Re: Installing version 7.0

You can find CSEntry 7.0.2 here:

http://csprousers.org/apk/CSEntry_7_0_2.apk
by Gregory Martin
April 4th, 2018, 7:55 am
Forum: Entry
Topic: Dictionary cannot be read by CSPro 7.0
Replies: 10
Views: 8586

Re: Dictionary cannot be read by CSPro 7.0

When using CSPro DB files, the dictionary version is stored in the file, and the way things are now, you can't move back to an older version of CSPro. In fact, the dictionary format did not change from 7.0 to 7.1, so this is a limitation we hope to remove in the future, because you should be able to...
by Gregory Martin
April 3rd, 2018, 7:36 am
Forum: Android
Topic: scribble pad : automated file name possible ?
Replies: 2
Views: 3144

Re: scribble pad : automated file name possible ?

I haven't used that application, but if you know what directory the program saves images, you might be able to use the dirlist function to get a listing of all of the files in that directory. If the program saves the files using a date naming scheme, then the last saved file will probably be the las...
by Gregory Martin
April 2nd, 2018, 9:39 am
Forum: Other
Topic: Disable run through .pen File
Replies: 2
Views: 3100

Re: Disable run through .pen File

On Windows, if you run the .pen file, then CSEntry will allow the user to enter file information, which will create a new .pff file. If you do not want to allow the user to create their own .pff file, you could do something like this: 1) Add a special parameter to your valid .pff file that only you ...
by Gregory Martin
April 2nd, 2018, 9:30 am
Forum: Feature Requests
Topic: Publish Entry Application (pen) for batch applications
Replies: 2
Views: 3101

Re: Publish Entry Application (pen) for batch applications

This is a good idea, and we've thought about even allowing batch applications to be run on Android devices, which we could do if we could support .pen files for batch applications. This is technically feasible, but it would require quite a bit of work on our end to translate all of the non-entry fun...
by Gregory Martin
March 28th, 2018, 8:12 am
Forum: Entry
Topic: Operator Controlled vs System Controlled.
Replies: 2
Views: 2717

Re: Operator Controlled vs System Controlled.

A big difference between the modes if how skips are handled. In system-controlled mode, any fields that are skipped over will have a value of notappl. What's happening in your checks, in system-controlled mode, is that in this section many of the CEK... values have been skipped over, so their value ...
by Gregory Martin
March 28th, 2018, 7:49 am
Forum: Entry
Topic: How to prevent time "hours" from being changed
Replies: 2
Views: 2704

Re: How to prevent time "hours" from being changed

The noinput statement will allow an interviewer to move back into the field. If you never want to allow entry to the field, you should set it to protected. You can then set it in logic: PROC TIME_1 preproc // fill in automatically only if it is blank if visualvalue (TIME_1) = notappl then TIME_1 = s...
by Gregory Martin
March 27th, 2018, 6:13 pm
Forum: Android
Topic: setocclabel with two variables...
Replies: 6
Views: 5384

Re: setocclabel with two variables...

You would write it like:
if fMode = 2 then
    filewrite(pffFile1,"CaseListingFilter=%05d",CLUSTERNO);
endif;
That line has to be in the PFF file.