Search found 1794 matches

by Gregory Martin
March 5th, 2018, 2:34 pm
Forum: Android
Topic: No SD Card – No Error
Replies: 3
Views: 3585

Re: No SD Card – No Error

I don't have a device with a SD card so I can't test this, but the dircreate function should return 1 if a directory exists, so this might work:
if dircreate(pathname(CSEntryExternal)) = 0 then
    errmsg("A SD card is not present.");
endif;
by Gregory Martin
March 5th, 2018, 11:16 am
Forum: Entry
Topic: Moving a field to a form
Replies: 1
Views: 2020

Re: Moving a field to a form

Thanks for reporting this. We've fixed it for the CSPro 7.1 release.
by Gregory Martin
March 5th, 2018, 9:57 am
Forum: Entry
Topic: Multiple questions in data entry on desktop
Replies: 9
Views: 7384

Re: Multiple questions in data entry on desktop

This is an example of how to set the property in logic: PROC FIELD_NAME preproc setproperty (FIELD_NAME, "CanEnterOutOfRange" , "NoConfirm" ); postproc if not FIELD_NAME in 1 , notappl then errmsg ( "Must be 1 or blank" ); reenter ; endif ; You can also assign blank as ...
by Gregory Martin
March 2nd, 2018, 3:15 pm
Forum: Other
Topic: Notification when a post is answered
Replies: 4
Views: 5451

Re: Notification when a post is answered

1) Click on your username (under the search bar).

2) Select "User Control Panel."

3) Click "Board preferences."

4) Select "Edit notification options."

You'll see options there.
by Gregory Martin
March 2nd, 2018, 3:13 pm
Forum: Feature Requests
Topic: Numbered messages in CAPI questions text
Replies: 3
Views: 3720

Re: Numbered messages in CAPI questions text

Those features just haven't been implemented as no one has requested them to date. Most users don't use the message file unless they are doing batch edits, in which case you don't usually use accept and there is no CAPI text. However, with multiple language message files, more people may use these n...
by Gregory Martin
March 1st, 2018, 11:14 am
Forum: Entry
Topic: Show/hide case tree
Replies: 8
Views: 6645

Re: Show/hide case tree

It won't make the CSPro 7.1 cut, but we'll consider it for a future release. I also like your suggestion (in another post) about a question type that just displays a lot of text. That might make a future release as well.
by Gregory Martin
March 1st, 2018, 11:08 am
Forum: Entry
Topic: kish grid
Replies: 6
Views: 6208

Re: kish grid

This is for something that I did in 2011. The Kish grid was declared in PROC GLOBAL: PROC GLOBAL array kishGrid( 8 , 6 ) = 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 2 2 2 1 1 2 2 3 3 1 2 2 3 4 4 1 2 3 3 3 5 1 2 3 4 5 5 1 2 3 4 5 6 ; Then, after the population roster was filled, this question was asked: What Kis...
by Gregory Martin
February 28th, 2018, 1:14 pm
Forum: Entry
Topic: Show/hide case tree
Replies: 8
Views: 6645

Re: Show/hide case tree

Not in the current version of CSPro.
by Gregory Martin
February 28th, 2018, 8:13 am
Forum: Entry
Topic: kish grid
Replies: 6
Views: 6208

Re: kish grid

I implemented a Kish grid a few years ago and tomorrow I may be able to find the code that I used. However, the Kish grid is useful for selecting a participant in the paper environment where you need to select a random number. If you are doing a CAPI survey, can you just replace the Kish grid with a...
by Gregory Martin
February 26th, 2018, 2:41 pm
Forum: Android
Topic: PHOTO PATH NAME
Replies: 2
Views: 3963

Re: PHOTO PATH NAME

Aaron's response is current in the case when you don't have a single value set that contains the full set of values for an item. However, if the STATE value set contained the full set of state names, you could simplify the code as: string photoFilename = maketext ( "%sphoto%s.jpg" , pathna...