Search found 565 matches

by aaronw
October 1st, 2018, 1:44 am
Forum: Entry
Topic: Remove Tab space
Replies: 5
Views: 3667

Re: Remove Tab space

I would write a user-defined function to handle this. I wrote a naive example that removes spaces to give you the general idea. As I loop through the string I ignore any space, but copy all other characters. After the function has run my new string will have no spaces. function string removeSpaces( ...
by aaronw
October 1st, 2018, 12:59 am
Forum: Entry
Topic: GIS Boundary on the Google Earth
Replies: 10
Views: 10080

Re: GIS Boundary on the Google Earth

I've attached an external logic file. It will read in a KML file and then write it out without the closing tag. This will allow you to insert the GPS coordinate before writing out the closing tag. The map is then displayed by calling execsystem.
Mapping.zip
(1.31 KiB) Downloaded 461 times
by aaronw
September 29th, 2018, 3:18 pm
Forum: Feature Requests
Topic: tableviewer called by another program
Replies: 4
Views: 3649

Re: tableviewer called by another program

I see. You would like to view a single case in read-only mode using Data Viewer. Currently your workflow makes sense using Data Viewer. Depending on the complexity of your questionnaire, it may make sense to display the contents of the case in the same way we would display a report. If the user is o...
by aaronw
September 28th, 2018, 6:28 pm
Forum: Other
Topic: Capturing GPS coordinators
Replies: 10
Views: 16268

Re: Capturing GPS coordinators

Check the length of the latitude variable in your dictionary. I might expect something like the following:
gps-dictionary.GIF
gps-dictionary.GIF (5.62 KiB) Viewed 8828 times
by aaronw
September 27th, 2018, 3:40 pm
Forum: Feature Requests
Topic: tableviewer called by another program
Replies: 4
Views: 3649

Re: tableviewer called by another program

If you want to run tableviewer on a single case, you'll need to create a data file with a single case. What is the scenario you want to do this?
by aaronw
September 27th, 2018, 3:15 pm
Forum: Entry
Topic: GIS Boundary on the Google Earth
Replies: 10
Views: 10080

Re: GIS Boundary on the Google Earth

You would define your block in KLM. Then you could write the enumerator's position to the KLM file and display the block and location using Google Earth. This wouldn't allow you to restrict the enumerator's work, but would allow you to give them a tool to identify whether they were inside the block ...
by aaronw
September 27th, 2018, 2:58 pm
Forum: Other
Topic: Installing CS Pro web does not work
Replies: 4
Views: 4402

Re: Installing CS Pro web does not work

This is not an issue with access to your MySQL database. The setup follows a series of steps. It will create the database and then test the connection. The database appears to be created without issue. However, the test connect is failing, because the username and password are a invalid. At least th...
by aaronw
September 26th, 2018, 4:23 pm
Forum: Other
Topic: Installing CS Pro web does not work
Replies: 4
Views: 4402

Re: Installing CS Pro web does not work

I was able to duplicate this error when I used the incorrect "CSWeb admin password" for an existing setup. Try a new database name altogether and see if that allows you to complete the configuration process.
by aaronw
July 22nd, 2018, 7:19 am
Forum: Entry
Topic: Loop with different variables
Replies: 1
Views: 1992

Re: Loop with different variables

I would rename S1P08A_i, and give it eight occurrences for each letter in your alphabet. 1. S1P08Results(1) would be the results for A 2. S1P08Results(2) would be the results for B 8. S1P08Results(8) would be the results for H Then the following should work: numeric i; string alphabet = "ABCDEF...
by aaronw
July 22nd, 2018, 4:23 am
Forum: Android
Topic: Assigning fields out of the flow
Replies: 3
Views: 3236

Re: Assigning fields out of the flow

CSPro was designed to ignore values off path. However, the assignment is made, but when the data is written out it is ignored. During a partial save all values (on or off path are saved). This is done, so a skip doesn't immediately wipe a bunch of collected data. If you maintain a partial save (neve...