Search found 2399 matches

by josh
January 25th, 2017, 6:11 am
Forum: Entry
Topic: Configuring FTPS
Replies: 3
Views: 5235

Re: Configuring FTPS

FTPS/FTPES both require that you install an SSL certificate on your server. Android does not like it if you use self-signed certificates so you need to purchase a certificate online and install it. The only way to use a self-signed certificate on Android is to add it to the trusted certificates on e...
by josh
January 23rd, 2017, 4:20 am
Forum: Entry
Topic: skipping without loosing data
Replies: 2
Views: 3300

Re: skipping without loosing data

You can use move but add the advance keyword to avoid skipping:

move to MY_FIELD advance;
by josh
January 19th, 2017, 11:23 pm
Forum: Tools
Topic: Excel to CSPro Dic
Replies: 7
Views: 6661

Re: Excel to CSPro Dic

To add to Joshua's advice on GPS, all which matches exactly with what I have seen in practice. I have also seen that sometimes the first time I try to acquire a signal with a new tablet it can take longer. I have had to set the time limit to even higher than a minute for the first reading. Then for ...
by josh
January 19th, 2017, 11:20 pm
Forum: Android
Topic: Recording Video
Replies: 1
Views: 2589

Re: Recording Video

This is something we plan to implement a simple solution for in a future release but as of version 7 it is not possible.
by josh
January 19th, 2017, 11:19 pm
Forum: Entry
Topic: Not Applicable
Replies: 5
Views: 5501

Re: Not Applicable

I don't think so. Again, something I would try to avoid as CSPro really wants skipped fields to be notappl. I would probably convert notappl to 66 in a batch application after data entry if the end user really needed that.
by josh
January 18th, 2017, 2:41 am
Forum: Entry
Topic: Not Applicable
Replies: 5
Views: 5501

Re: Not Applicable

You can make this work with the set behavior statement. For example: set behavior(MYFIELD) canenter(notappl) on (noconfirm); However it is a really bad idea. Notappl has a very special purpose in CSPro, representing skipped fields. Trying to use it as a valid choice will only cause you major headach...
by josh
January 13th, 2017, 7:02 am
Forum: Entry
Topic: synchronization options
Replies: 34
Views: 25210

Re: synchronization options

That error comes from Android and happens anytime a program crashes so it could be many things. Can you describe the steps that you took before you got the error? Do you get the error every time?
by josh
January 12th, 2017, 10:15 am
Forum: Entry
Topic: synchronization options
Replies: 34
Views: 25210

Re: synchronization options

I think you know the drill by now. Please look at the log files. Post them here if you don't understand the error messages in them.
by josh
January 9th, 2017, 9:09 pm
Forum: Entry
Topic: SavePartial() doesn't work inside OnStop()
Replies: 1
Views: 2325

Re: SavePartial() doesn't work inside OnStop()

This appears to be a bug and one that has been around since at least version 5. It only occurs if you don't run any procs before the call to OnStop. We will add a proper fix but for now there is simple workaround. Add a dummy preproc for the first level. Something like: PROC USERS_QUEST preproc // T...
by josh
January 8th, 2017, 11:10 pm
Forum: Entry
Topic: Computer Assisted Coding
Replies: 4
Views: 3809

Re: Computer Assisted Coding

That example uses an external form file. To create an external form file, go to "Add files..." in the files menu and fill in the name of the new form file under "Form file". It is similar to adding an external dictionary except that you get both a a dictionary and a form. You can...