Search found 568 matches

by aaronw
April 11th, 2018, 11:28 am
Forum: Other
Topic: execute csv created files
Replies: 4
Views: 4793

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: 3588

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: 2546

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.
by aaronw
March 23rd, 2018, 3:24 pm
Forum: Entry
Topic: Transfer data between questionnaires linked by a menu on Android
Replies: 6
Views: 6500

Re: Transfer data between questionnaires linked by a menu on Android

Your paths are referring to the F: drive on Windows. We need to construct a path that will work on Windows and Android. We can do this with the pathname function . execPFF ( pathname (application) + "IFPRI\SPIR_Menu\HH_Male_Female_lookup_fixed\HH_Male_Female_lookup_fixed\HH_Male_Female\HH\SPIR ...
by aaronw
March 23rd, 2018, 3:13 pm
Forum: Other
Topic: How to install CSPro 7.1 using OS X El Capitan
Replies: 2
Views: 6242

Re: How to install CSPro 7.1 using OS X El Capitan

I would expect CSPro to be installed to "Program Files (x86)."

I have used Wine in the past to run Microsoft Office on Linux with mixed results. If I were doing it again I would try running a virtual machine. However, let us know how it works out for you.
by aaronw
March 23rd, 2018, 11:59 am
Forum: Feature Requests
Topic: Need to renter a field that was skipped
Replies: 2
Views: 3542

Re: Need to renter a field that was skipped

The navigation that you are describing is not easy to do. We are aware and may consider this in a future release. Here's one approach. Enforce the limitation that all fields will eventually be answered. Near the beginning of you application you'll have a field you never skip, so it can always be ree...
by aaronw
March 23rd, 2018, 11:28 am
Forum: Synchronization
Topic: Synchronizing photos along with data
Replies: 6
Views: 6011

Re: Synchronizing photos along with data

It makes sense to have two separate applications. One to collect data and another to let the interviewer decide when to transmit data. In addition, I would go ahead and synchronize the dictionary in the new application. That way all data is transmitted in one shot.
by aaronw
March 23rd, 2018, 10:25 am
Forum: Synchronization
Topic: Install a Deploy Application on a Mobile Device
Replies: 5
Views: 4658

Re: Install a Deploy Application on a Mobile Device

Maybe it's more clear to say "In the Application Listing menu tap the menu icon or menu button and choose Add Application." This will also resolve your other issue. I will update the helps. Thanks for your feedback.
by aaronw
March 22nd, 2018, 4:45 pm
Forum: Synchronization
Topic: Synchronizing photos along with data
Replies: 6
Views: 6011

Re: Synchronizing photos along with data

You can use syncfile to transmit a file from the device to Dropbox. Here's a snippet of logic syncing an external data file and an image file. if syncconnect (dropbox) then if not syncdata (BOTH, SIMPLECAPI_DICT) then errmsg ( "Data upload failed." ); endif ; if not syncfile (PUT, "re...
by aaronw
March 22nd, 2018, 4:36 pm
Forum: Android
Topic: Installing version 7.0
Replies: 7
Views: 7020

Re: Installing version 7.0

Ari, I have sent you an email.