Search found 2399 matches

by josh
July 13th, 2015, 8:16 am
Forum: Entry
Topic: how to use excel files for list of available codes
Replies: 9
Views: 8417

Re: how to use excel files for list of available codes

Someone pointed out that the example code above does not work in the current version of CSPro (thanks Noel). Please use the following link instead:

http://teleyah.com/cspro/DCJune2015/05- ... y5-6.1.zip
by josh
July 11th, 2015, 3:10 pm
Forum: Other
Topic: Running CSPro on Local Area Network for multiple users
Replies: 3
Views: 5574

Re: Running CSPro on Local Area Network for multiple users

Many people have run CSPro over a local network. I have not done so myself but my understanding is that the approach is to used a shared drive that all keyers have access too. You give each keyer a folder on the shared drive in which to store their data files. You can then write scripts to copy data...
by josh
July 11th, 2015, 10:38 am
Forum: Entry
Topic: how to use excel files for list of available codes
Replies: 9
Views: 8417

Re: how to use excel files for list of available codes

We did a very similar exercise in a recent workshop. In our case we had districts and villages in those districts with the mapping from villages to districts in an Excel file. As you have already figured you need to use a lookup file which can be a bit tricky the first time you do it. You can find t...
by josh
July 6th, 2015, 7:40 am
Forum: Entry
Topic: Record with item list
Replies: 7
Views: 6730

Re: Record with item list

For alpha fields you can either add a value set to the variable or you can prevent blanks in logic. Using a value set only makes sense if there are a limited set of options but not for free text like a name or address. To use logic you would do something like: PROC myalpha if strip(myalpha) = "...
by josh
July 2nd, 2015, 4:18 pm
Forum: Entry
Topic: Move command error
Replies: 1
Views: 2095

Re: Move command error

You cannot move to a field that was previously skipped. You need to structure your application in such a way that you don't skip the field DOC or so that you move to a field other than DOC (one that was not skipped). You are probably best off putting the insurance section immediately after Q2 (is th...
by josh
July 2nd, 2015, 3:41 pm
Forum: Entry
Topic: Calculating Age
Replies: 6
Views: 6177

Re: Calculating Age

Never mind about the output from errmsg. You will not see any since it will never be run. The problem is that you have skips the proc above the age check which will prevent you from ever getting to that code: if $ >=6 then skip to s1q5; endif; if $<6 then move to s1q4b; endif; For anyone greater tha...
by josh
July 2nd, 2015, 3:14 pm
Forum: Entry
Topic: Calculating Age
Replies: 6
Views: 6177

Re: Calculating Age

Please put in the errmsg as suggested and let me know what you see.
by josh
July 2nd, 2015, 8:22 am
Forum: Entry
Topic: Calculating Age
Replies: 6
Views: 6177

Re: Calculating Age

The logic looks correct except that you are using S1Q4B in the error message and S1Q4A in the if. Which one is the age in years? If that isn't the problem then I suspect that one or more of the inputs to your check is not correct. I would add an errmsg statement just to print out the inputs to the c...
by josh
July 2nd, 2015, 6:51 am
Forum: Entry
Topic: set attributes protect lock the next field in roster
Replies: 4
Views: 4733

Re: set attributes protect lock the next field in roster

Interesting. I found different behavior. In my test when I set the first roster field (a numeric) to protected in the preproc of that field it did not lock the next field (an alpha) however when I got the next row of the roster I was able to type into the protected field - in fact I was able to ente...
by josh
July 1st, 2015, 10:09 am
Forum: Entry
Topic: Dropbox sync
Replies: 37
Views: 40251

Re: Dropbox sync

I'm still not clear on what exactly the problem is. First you were saying there were errors and now your saying that the sync is sucessfull but files folders aren't showing up on the tablet. Can you explain precisely what the behavior you are seeing is? You need to give us details including what fil...