Search found 565 matches

by aaronw
April 25th, 2018, 5:53 pm
Forum: Entry
Topic: set mising value through dictionary macros not working.
Replies: 5
Views: 4131

Re: set mising value through dictionary macros not working.

I think you may be pasting the value sets directly into the dictionary. Instead use the "Paste" button in the Dictionary Macros to bring the changes back to CSPro. 1. In dictionary macros press "Copy All" 2. Paste (ctrl+v) the value sets into Excel 3. Edit labels, delete value se...
by aaronw
April 25th, 2018, 5:06 pm
Forum: Entry
Topic: Errmsg/Warning on multiple lines
Replies: 4
Views: 3516

Re: Errmsg/Warning on multiple lines

Unfortunately, I don't believe either are currently possible.
by aaronw
April 24th, 2018, 6:11 pm
Forum: Entry
Topic: Advance to a second dimension variable
Replies: 1
Views: 2255

Re: Advance to a second dimension variable

I believe you're doing everything correctly. However, I am noticing an issue with a multiple occurring record that has a multiple occurring item. Only the first occurrence of the record is being properly saved. This is causing your advance to fail, because the second occurrence is blank. We will tak...
by aaronw
April 19th, 2018, 9:22 pm
Forum: Android
Topic: gps function
Replies: 6
Views: 5854

Re: gps function

Your device's ability to take a GPS reading will be affected by environmental factors. Since your GPS gauge shows nothing it might be necessary to move around and retake the reading. If you're inside a building, try moving outside.
by aaronw
April 19th, 2018, 5:21 pm
Forum: Android
Topic: Can't save photo in Android
Replies: 5
Views: 4612

Re: Can't save photo in Android

You will want to use a relative path and append this to what is returned from pathname(application). As an example, take a look at the logic below. The pathname(application) returns an absolute path to the application folder. However, ".." moves us up a level and and then to PHOTO_E. strin...
by aaronw
April 18th, 2018, 3:32 pm
Forum: Android
Topic: Can't save photo in Android
Replies: 5
Views: 4612

Re: Can't save photo in Android

The construction of the path assigned to NamePhoto looks incorrect. Remember the function pathname returns the path to the application folder. Try something like this:
string NamePhoto = pathname(application) + maketext("PHOTO_E_%04d_1.jpg", ID_RESP);
by aaronw
April 18th, 2018, 3:14 pm
Forum: Android
Topic: Application Load Error
Replies: 1
Views: 2470

Re: Application Load Error

This question has been asked before. Take a look at this thread.
by aaronw
April 18th, 2018, 12:29 pm
Forum: Entry
Topic: countcases statement problem
Replies: 6
Views: 4862

Re: countcases statement problem

The external dictionary you're describing is different from the one originally attached. It now looks complete. Countcases is being called on PRODUTOSPORESTABELECE_DICT. This dictionary is associated with ProdutosPorEstabelece.dat. However, there are only two unique case ids specified, 031001 and 10...
by aaronw
April 18th, 2018, 11:38 am
Forum: Entry
Topic: Could not find or activate FORM symbol or .ppf
Replies: 1
Views: 2495

Re: Could find or activate FORM symbol or .ppf

I don't understand your question. Could you try rewriting it and attach your project?
by aaronw
April 17th, 2018, 4:04 pm
Forum: Other
Topic: Collecting clinical data after the interview
Replies: 4
Views: 4213

Re: Collecting clinical data after the interview

The risk I saw with first option was that an otherwise complete questionnaire could accidentally be edited when adding the clinical record. Option two was my attempt to minimize this risk by adding a questionnaire, instead of editing the existing questionnaire. I don't see a huge advantage between t...