Search found 2399 matches

by josh
May 16th, 2017, 10:29 am
Forum: Entry
Topic: data exportation
Replies: 2
Views: 2707

Re: data exportation

If you use the export data tool the order will always be based on the order of the variables in the dictionary.

If you want finer control you can do the export from a batch application using the export statement in logic. Look in the help under "Export Statement" for details.
by josh
May 15th, 2017, 8:33 am
Forum: Android
Topic: 6.3 apps not working in android 7 version
Replies: 11
Views: 10025

Re: 6.3 apps not working in android 7 version

It isn't a general bug as we have plenty of apps that we use in 7 with dynamically generated pff files. You can send us your app (cspro@lists.census.gov) and we can take a look.

If you don't want to switch to 7.0 on the PC then stick with 6.3 on the tablet too.
by josh
May 15th, 2017, 6:01 am
Forum: Synchronization
Topic: cannt connect server
Replies: 2
Views: 3830

Re: cannt connect server

You shouldn't be going to the link csweb/api directly in the browser. For the web interface use http://localhost/csweb/ui. You should use csweb/api in the synchronization settings so that should be working. Can you post the sync.log file from your device? On Android this in the CSEntry directory. On...
by josh
May 15th, 2017, 5:58 am
Forum: Entry
Topic: Values remain blank when cleaning
Replies: 3
Views: 3178

Re: Values remain blank when cleaning

I see the problem clearly from the video. Are you using version 6.3 or version 7? I think version may have a fix for this. If it still happens in version 7 can send us the app? Choose pack application and send us the zip file that it creates. If possible please include the data for case that you are...
by josh
May 15th, 2017, 5:46 am
Forum: Android
Topic: 6.3 apps not working in android 7 version
Replies: 11
Views: 10025

Re: 6.3 apps not working in android 7 version

In general, apps written in 6.3 should work fine in version 7. Try rebuilding the .pen file using version 7.0 and see if that fixes the problem. If not, please send us a copy of the app. You can send it to cspro@lists.census.gov.
by josh
May 13th, 2017, 3:57 pm
Forum: Entry
Topic: Error message
Replies: 14
Views: 11185

Re: Error message

It is an error opening a data file. What is the full error message? It should contain additional information.
by josh
May 12th, 2017, 10:05 am
Forum: News
Topic: CSPro 7.0 is available
Replies: 4
Views: 15368

CSPro 7.0 is available

CSPro 7.0 and CSEntry Android App were recently released! What’s new with CSPro 7.0? •Introduction of new CSPro DB data format that stores all data entry-specific information in a single file. •CSWeb, a web application that allows users to transfer cases (questionnaires) or files between client devi...
by josh
May 11th, 2017, 8:23 pm
Forum: Entry
Topic: Dropbox data security
Replies: 2
Views: 4143

Re: Dropbox data security

When you say "tap over the dropbox icon" does that mean you have the Dropbox app installed on your device? You don't need that application to use Dropbox sync. You could delete it. I think an interviewer might still be able to go to www.dropbox.com in a browser to get it in but it is not a...
by josh
May 10th, 2017, 6:36 am
Forum: Entry
Topic: Access to external memory
Replies: 8
Views: 6454

Re: Access to external memory

Here is a code snippet that copies the file data.csdb from the application folder to a folder named backup concatenated with the current time on the external SD card: string backupFolder = pathname (CSEntryExternal) + maketext ( "Backup%d" ,timestamp()); dircreate (backupFolder); filecopy ...
by josh
May 9th, 2017, 6:24 am
Forum: Synchronization
Topic: Synchronization with FTP with CSPro 7
Replies: 1
Views: 2830

Re: Synchronization with FTP with CSPro 7

Yes, you can. However you have to as an ftp url rather than a http url: if syncconnect(ftp, " ftp ://192.168.10.10", "ftpuser", "password") then In the current beta release (March 31) FTP only works with syncfile() but in the final CSPro 7 release coming very soon it wi...