Search found 2399 matches

by josh
February 10th, 2017, 7:13 am
Forum: Entry
Topic: Skip to next Roster
Replies: 1
Views: 2580

Re: Skip to next Roster

Skip to next is meant for use inside a roster to skip to the next row. For other cases you need to use the name of the field/form or roster you want to skip to. So in your case you want to use skip to Q1, skip to Q2...
by josh
February 10th, 2017, 7:08 am
Forum: Synchronization
Topic: Hosting the CSpro Webserver
Replies: 7
Views: 9044

Re: Hosting the CSpro Webserver

The setup on a remote host is not really any different than on a local one. You need to FTP the files to your host, create the database (and possibly the database user) in MySQL (on most hosts you do this in cpanel) and then run the setup script. It is likely your PHP host has a different version of...
by josh
February 9th, 2017, 7:24 am
Forum: Other
Topic: Roster Error
Replies: 6
Views: 5891

Re: Roster Error

Since your value set for APPLIANCES does not include notappl when you try to enter blank you are getting an out of range error. You can add notappl to the value set in the dictionary and then the range check will pass and you will see the accept.
by josh
February 9th, 2017, 7:18 am
Forum: Android
Topic: Call Record/Image Capture
Replies: 4
Views: 5660

Re: Call Record/Image Capture

You can't use substitutions (%s, %d) directly in execsystem. Use maketext() for the substitution and pass the result to execsystem: execsystem ( maketext ( "camera:/storage/emulated/0/csentry/nueva carpeta/images/load/photo %d.png" , id)); See http://teleyah.com/cspro/SouthAfricaOct2016/07...
by josh
February 8th, 2017, 7:19 am
Forum: Other
Topic: How to use CSEntry
Replies: 1
Views: 3229

Re: How to use CSEntry

To enter data on Windows just click on the green traffic light to run your data entry application. To enter data on Android you need to create a .pen file and copy that to your Android device. See the Android getting started guide for details: https://www.census.gov/population/international/software...
by josh
February 7th, 2017, 2:43 pm
Forum: Other
Topic: Roster Error
Replies: 6
Views: 5891

Re: Roster Error

Looking at your app I can confirm that APPLIANCES is a numeric variable as I guessed. Change your logic to compare it to notappl instead of to "" and it will compile without error: PROC APPLIANCES If APPLIANCES = notappl then numeric finished; finished = accept ( "Are you done capturi...
by josh
February 7th, 2017, 2:41 pm
Forum: Synchronization
Topic: CSPro Web Server Sync Issue
Replies: 4
Views: 5852

Re: CSPro Web Server Sync Issue

That error code (500) is not a problem with the username/password. That is an internal server error. In cases like this you can get more information from the log files. We intentionally keep the user facing error messages short and put the details in the log file. Since this is coming from a sync re...
by josh
February 4th, 2017, 12:47 pm
Forum: Other
Topic: Roster Error
Replies: 6
Views: 5891

Re: Roster Error

My guess is that APPLIANCES is a numeric variable from your dictionary. You cannot compare a number to a string. "" is of type string. To check if a numeric variable is blank compare it to notappl: if APPLIANCES = notappl then ... If that isn't the problem please attach your application. U...
by josh
February 2nd, 2017, 6:22 am
Forum: Entry
Topic: Setcapturetype on Global Proc
Replies: 5
Views: 4423

Re: Setcapturetype on Global Proc

Setcapture type only works one field at a time. I'm not sure what you are trying to do. Ctrl+K should already turn on/off the response popup window for the entire program.
by josh
January 30th, 2017, 6:29 pm
Forum: Entry
Topic: LoadCase Function Issue
Replies: 7
Views: 5763

Re: LoadCase Function Issue

The code for external dictionaries changed a lot in version 7 but your old program should still work. If you can send your app we can take a look.