Search found 561 matches

by aaronw
February 13th, 2023, 4:10 pm
Forum: Feature Requests
Topic: HTML report
Replies: 2
Views: 7602

Re: HTML report

I made a few modifications to the existing report in the CAPI Census example. Here's a snippet of the report code. <!-- Report content --> <table class="table table-striped table-bordered"> <thead> <tr> <th>Name</th> <th>Relationship</th> <th>Sex</th> </tr> <? do numeric ctr = 1 while ctr ...
by aaronw
February 2nd, 2023, 8:27 am
Forum: Synchronization
Topic: Synchronisation
Replies: 1
Views: 2702

Re: Synchronisation

The issue here is case id management. You need to make sure that the devices are making unique keys. If you create an interview with id "1" on device #1 and then create an interview with id "1" on device #2 you will have to have a duplicate on the server when you sync. My suggest...
by aaronw
February 2nd, 2023, 8:17 am
Forum: Synchronization
Topic: Synchronisation with bluetooth
Replies: 8
Views: 2061

Re: Synchronisation with bluetooth

Can you attach the sync.log from each device and also let me know what version of CSEntry are running on each?
by aaronw
January 9th, 2023, 10:21 am
Forum: Android
Topic: Backup and Restore (OTG )
Replies: 3
Views: 3037

Re: Backup and Restore (OTG )

Given what I wrote before you could make a change to the function CreateUniqueZipPath, so it returns just the file name. This will make constructing the destination path for the zip straightforward. function string CreateUniqueZipName() CreateUniqueZipName = maketext ( "DataBackup-%d.zip" ...
by aaronw
January 5th, 2023, 5:21 pm
Forum: Android
Topic: Backup and Restore (OTG )
Replies: 3
Views: 3037

Re: Backup and Restore (OTG )

If you were synchronizing to a server, I would rather leverage synchronization to backup and restore data. However, I have written logic to backup and delete data files locally in the past. To restore the data you'd need more of less reverse the process. // ------------------ // ------------------ B...
by aaronw
December 14th, 2022, 3:27 pm
Forum: Entry
Topic: Out of Range !
Replies: 7
Views: 10619

Re: Out of Range !

I could imagine a couple different approaches that each require an additional post-data collection step. Idea 1: Remove the decimal from the value sets, and add it back later. (Did not do activity) | 0.00 15 minutes | 25 20 minutes | 33 25 minutes | 33 Then the additional post-data collection step i...
by aaronw
December 14th, 2022, 3:15 pm
Forum: Entry
Topic: CSWEB MAP
Replies: 8
Views: 4488

Re: CSWEB MAP

Just wanted to give you a quick update. When I used the your data and extracted dictionary I start to zoom in on Timor-Leste (or at least that part of the world) and then the view jumps to Africa. I've passed on this report for a closer look. Thanks for your patience.
by aaronw
December 12th, 2022, 10:35 am
Forum: Entry
Topic: Out of Range !
Replies: 7
Views: 10619

Re: Out of Range !

I was able to reproduce the issue and will need to look into it further. My suggestion is to store the values as whole numbers and then take an additional step to convert them to their decimal value.
by aaronw
December 12th, 2022, 9:38 am
Forum: Synchronization
Topic: Date wise download data from FTP server
Replies: 1
Views: 1371

Re: Date wise download data from FTP server

Sure. If you're already sync'ing to an FTP server. How about downloading the data using a utility application.

syncconnect: https://www.csprousers.org/help/CSPro/s ... n_ftp.html
syncdata: https://www.csprousers.org/help/CSPro/s ... ction.html
by aaronw
December 12th, 2022, 9:34 am
Forum: Synchronization
Topic: csweb admin Authentication Failed
Replies: 2
Views: 912

Re: csweb admin Authentication Failed

That makes sense. The current version of CSWeb does not support PHP 8.0. We are working on that currently.