Search found 384 matches
- February 4th, 2021, 5:51 pm
- Forum: Android
- Topic: Manual .csdb generation
- Replies: 3
- Views: 261
Re: Manual .csdb generation
Are you using the syncdata function to synchronize the data contained in a CSDB file? https://www.csprousers.org/help/CSPro/syncdata_function.html CSDB files allow for "smart" sync'ing. That is after uploading the initial data, subsequent uploads will only include cases that have changed. This will ...
- February 4th, 2021, 5:43 pm
- Forum: Entry
- Topic: Application Crashed
- Replies: 2
- Views: 192
Re: Application Crashed
It looks like the dictionary was renamed. Your project is trying to open a dictionary named "Mapping_Survey.dcf." I renamed it to the existing dictionary, MAPPING_SURVEY_DICT.dcf, and it works. I've attached the project.
- February 4th, 2021, 5:38 pm
- Forum: Entry
- Topic: menu settings
- Replies: 5
- Views: 1083
Re: menu settings
The keyword skip will allow you to jump around, but it also considers skipped data as deleted. The keyword advance, moves through the logic till the end of entered data. If the field can't be blank the advance will stop and issue a warning. The menu option "advance to end" will function in a similar...
- February 2nd, 2021, 4:01 pm
- Forum: Other
- Topic: Help to eliminate blank lines in a report or make dynamic arrangements
- Replies: 3
- Views: 293
Re: Help to eliminate blank lines in a report or make dynamic arrangements
Try substituting a list for the array. Then you can add elements as necessary. list: https://www.csprousers.org/help/CSPro/list.html When working with reports in the past I have made use of the working storage. The working storage is not associated with a dictionary, so it's not persistent. Much lik...
- February 2nd, 2021, 10:08 am
- Forum: Entry
- Topic: How to Copy the the previous GPS reading if it is not Persistent .
- Replies: 2
- Views: 174
Re: How to Copy the the previous GPS reading if it is not Persistent .
The easiest approach and one that would work without a menu is to make use of savesetting and loadsetting. When you take a GPS reading, store the values locally using savesetting. Then in the next case you can access them through loadcase. savesetting: https://www.csprousers.org/help/CSPro/savesetti...
- February 1st, 2021, 4:12 pm
- Forum: Synchronization
- Topic: error 301 connecting to the server
- Replies: 8
- Views: 491
Re: error 301 connecting to the server
I did a bit of testing today. I created a new instance of CSWeb and uploaded a dictionary and some data. Then I renamed the CSWeb directory. I received 404 errors which I would expect. You need to figure out why you're receiving this 301 message . It has a very specific purpose and I think if the CS...
- January 29th, 2021, 4:25 pm
- Forum: Synchronization
- Topic: error 301 connecting to the server
- Replies: 8
- Views: 491
Re: error 301 connecting to the server
If you have a snapshot of your OS that might be the single best approach. Check with your maintenance guy. However, I assume the backup is just a copy of the CSWeb installation on the server? My first approach would be to take a look at the set up script and see what exactly it does. It may be possi...
- January 28th, 2021, 5:41 pm
- Forum: Synchronization
- Topic: error 301 connecting to the server
- Replies: 8
- Views: 491
Re: error 301 connecting to the server
The http 301 response is saying the URL has moved. However, this isn't really the case. Something is just misconfigured, so it's not that helpful. It's really hard for me to say what is wrong with your configuration. When you say everything was deleted from your server, do you mean the computer was ...
- January 28th, 2021, 5:26 pm
- Forum: Entry
- Topic: Setfile not UNICODE
- Replies: 2
- Views: 221
Re: Setfile not UNICODE
Those characters are the byte order mark and signify a Unicode encoding. After synchronizing try opening the file in notepad and saving as ANSI. Every time you open the file in CSPro it will be reconverted to Unicode. For more info take a look at: "What if I want to use a data file with an older ver...
- January 28th, 2021, 4:51 pm
- Forum: Android
- Topic: Playing audio
- Replies: 4
- Views: 200
Re: Playing audio
Makes sense. I'll pass that information on, thanks.