Search found 565 matches

by aaronw
April 17th, 2018, 3:20 pm
Forum: Entry
Topic: Show/hide case tree
Replies: 8
Views: 6515

Re: Show/hide case tree

@kompiler I was able to reproduce your issue. There isn't another way to view them. We'll need to fix this in a future release.
by aaronw
April 16th, 2018, 4:30 pm
Forum: Feature Requests
Topic: Automatic alpha fields in the dictionary
Replies: 1
Views: 2618

Re: Automatic alpha fields in the dictionary

I can see the use case, but I think it is important to warn the user they can't have a numeric greater than 15.
by aaronw
April 16th, 2018, 4:23 pm
Forum: Entry
Topic: countcases statement problem
Replies: 6
Views: 4850

Re: countcases statement problem

PRODUTOSPORESTABELECE_DICT does not describe the collected data. This dictionary has one id item of length 3. However, your data looks like "1071001008Farinha de trigo." It looks to me like you are using a new version of the dictionary to collect the data, but used the old version as the e...
by aaronw
April 16th, 2018, 3:19 pm
Forum: Entry
Topic: ROSTER variables not showing
Replies: 2
Views: 2847

Re: ROSTER variables not showing

I was able to reproduce the problem. This will be fixed in the 7.1.1 release. In the meantime, if you reopen the project the item label will be displayed.
by aaronw
April 13th, 2018, 12:41 pm
Forum: Other
Topic: Collecting clinical data after the interview
Replies: 4
Views: 4181

Re: Collecting clinical data after the interview

Sorry for the delay. I think either approach will work. Adding the clinical record to the end of your survey is the simpler of the two approaches. The alternative is going to take a bit more work. You'll need to add menu and clinical applications. The menu application will loop through your original...
by aaronw
April 12th, 2018, 6:23 pm
Forum: Editing
Topic: recover deleted cases?
Replies: 3
Views: 5564

Re: recover deleted cases?

Currently you can't do this in CSPro, but you can use a SQLite database manager. I use DB Browser for SQLite. Open the CSDB file and you'll be able to edit the deleted flag.

If you don't want to allow your interviewers to delete cases you can specify Lock=Delete in the PFF file.
by aaronw
April 12th, 2018, 5:22 pm
Forum: Entry
Topic: countcases statement problem
Replies: 6
Views: 4850

Re: countcases statement problem

I ran countcases in a project that I am working on without issue. I tried with and without a condition. numeric i = countcases (PSC_GEOCODES_DICT); errmsg ( "Cases: %d" , i); i = countcases (PSC_GEOCODES_DICT where GEOCODES_PROVINCE = 01 and GEOCODES_DISTRICT = 02 ); errmsg ( "Cases: ...
by aaronw
April 11th, 2018, 11:28 am
Forum: Other
Topic: execute csv created files
Replies: 4
Views: 4536

Re: execute csv created files

How about a CSPro function that checks default installation paths for Excel? You'll need to add additional installation paths to the versions array. PROC GLOBAL numeric total_versions = 2 ; array string versions(total_versions) = "Microsoft Office\Root\Office16\EXCEL.EXE" , "Microsoft...
by aaronw
April 11th, 2018, 9:09 am
Forum: Tools
Topic: TextViewer with more than one file
Replies: 2
Views: 3308

Re: TextViewer with more than one file

List (without commas) all three files in the same execsystem.
execsystem(maketext('"%sTextView.exe" "C:\Survey\Helps.txt" "C:\Survey\Readme.txt" "C:\Survey\License.txt"',pathname(CSPro)),maximized,wait);
by aaronw
April 11th, 2018, 8:20 am
Forum: Android
Topic: execpff without WAIT
Replies: 1
Views: 2447

Re: execpff without WAIT

Your code snippet looks fine and I am not able to replicate the issue. If you send your application to cspro@lists.census.gov I will take a look at it and run it on my Android device.