Search found 2399 matches

by josh
February 2nd, 2015, 12:16 pm
Forum: Entry
Topic: Editing Second level Case
Replies: 7
Views: 5784

Re: Editing Second level Case

After looking a bit more closely at it the batch application will be a bit tricky. If you aren't very comfortable with CSPro you may want to stick with the two level application and just fix the issues with the invalid entries and blanks. If you are comfortable in CSPro then here is how I would conv...
by josh
February 2nd, 2015, 9:58 am
Forum: Entry
Topic: android cspro consult
Replies: 23
Views: 24197

Re: android cspro consult

No your application does not have to be in CAPI mode. The .pff file is generated the first time you run your application on the PC. It will be in the same directory as your .ent file. The .pen file is generated when you do "Export as portable binary (.pen)". It will be put in whatever dire...
by josh
January 30th, 2015, 1:31 pm
Forum: Entry
Topic: android cspro consult
Replies: 23
Views: 24197

Re: android cspro consult

What do you mean by "UN already have CSPro application android"? To install CSPro on your Android phone you should download it from the Google Play store. When you run it the first time it will create a directory on your phone/tablet called "csentry". From your PC, export your da...
by josh
January 30th, 2015, 1:24 pm
Forum: Entry
Topic: Editing Second level Case
Replies: 7
Views: 5784

Re: Editing Second level Case

It is going to stop at any field in the first level that has an invalid value - i.e. any field whose value is not in the value set. This includes any field that is blank unless blank (NOTAPPL) is in your value set. There are a lot of blank entries in the first level of that case so you would need to...
by josh
January 30th, 2015, 9:56 am
Forum: Entry
Topic: Using SQL query
Replies: 2
Views: 3307

Re: Using SQL query

CSPro doesn't support SQL querying. The closest function is loadcase but that only works on external data files and doesn't handle anything like a max query. For that you would have to write logic to run through the whole data file using loadcase and compute the max yourself. You might be able to us...
by josh
January 30th, 2015, 8:42 am
Forum: Entry
Topic: Editing Second level Case
Replies: 7
Views: 5784

Re: Editing Second level Case

When I try your application and open 032032032032 in modify and try to go to the ExitQ I end up getting an out of range error on the interviewer ID field (A02) because the interviewer code is not in the value set for this item. When you try to advance to the second level case, CSEntry will stop you ...
by josh
January 30th, 2015, 8:23 am
Forum: Entry
Topic: problem in the data entry
Replies: 4
Views: 5138

Re: problem in the data entry

Once the case has been saved the number of records is fixed. In order to add a new record you need to insert a new group occurrence ("Insert Group Occ" under the edit menu or press F3). See "Insert Occurrence" in the online help for details.
by josh
January 29th, 2015, 7:58 am
Forum: Entry
Topic: Editing Second level Case
Replies: 7
Views: 5784

Re: Editing Second level Case

Could you post you application and a sample data file along with the exact steps to reproduce the problem?
by josh
January 29th, 2015, 7:57 am
Forum: Entry
Topic: problem in the data entry
Replies: 4
Views: 5138

Re: problem in the data entry

Could you post your application and a sample data file so that we can see the problem?
by josh
January 26th, 2015, 4:53 pm
Forum: Entry
Topic: User-defined function: using parameter in error message
Replies: 2
Views: 3374

Re: User-defined function: using parameter in error message

That is a poorly worded error message. The problem is that the second argument to select (where you have Q2) needs to be the name of the field to skip to but Q2 is the value of the field. In other words if you call your function with two fields NUMTRAINED and NUMEMPLOYED where the user has entered 1...