Search found 15 matches

by SKARA
March 3rd, 2021, 7:26 am
Forum: Entry
Topic: Get CSEntry version through syntax
Replies: 2
Views: 1388

Re: Get CSEntry version through syntax

khurshid.arshad wrote: March 3rd, 2021, 3:43 am Dear Team;

How can i check the CSEntry version through syntax.
thanks.
a.
To check the CSEntry version through syntax, use the function below:
s = diagnostics("version_detailed")
or
s = diagnostics("version")

Sidiki Karabenta
by SKARA
November 9th, 2020, 3:50 pm
Forum: Android
Topic: A way to conserve in data the order in which responses in a check box question are checked ?
Replies: 2
Views: 1730

Re: A way to conserve in data the order in which responses in a check box question are checked ?

Thank you Gregory for all these clarifications and suggestions. While waiting for the version of CSPro which supports the "ordered checkbox" capture type, I will try to find another solution.
by SKARA
November 6th, 2020, 5:43 pm
Forum: Android
Topic: A way to conserve in data the order in which responses in a check box question are checked ?
Replies: 2
Views: 1730

A way to conserve in data the order in which responses in a check box question are checked ?

is there a way to conserve in data the order in which responses in a check box question are checked ? Example: if the responses of Q1_CheckBox are from code "01" to "20" and the interviewer checks five responses in the following order : "05", "20, "12", &...
by SKARA
November 3rd, 2020, 4:16 pm
Forum: Other
Topic: Does CSEntry run on ios device ?
Replies: 2
Views: 1939

Re: Does CSEntry run on ios device ?

Thanks Gregory for your reply and this information.
by SKARA
November 3rd, 2020, 10:30 am
Forum: Other
Topic: Does CSEntry run on ios device ?
Replies: 2
Views: 1939

Does CSEntry run on ios device ?

Does CSEntry run on ios device ? If yes, how ?
Please, I need help.

Regards,
KARABENTA Sidiki
by SKARA
September 1st, 2020, 7:46 pm
Forum: Android
Topic: Time independent of the device time the app is running on
Replies: 2
Views: 1764

Re: Time independent of the device time the app is running on

Thanks Aaronw for your response. With the use of Timestamp, there are concerns when interviewers do not take care to set the time on their devices. It is for this reason that I need a time capture which is not at all related to the device used. This could be a function of the kind to capture the val...
by SKARA
August 31st, 2020, 4:17 pm
Forum: Android
Topic: Time independent of the device time the app is running on
Replies: 2
Views: 1764

Time independent of the device time the app is running on

Hi dear CsPro users,

Is there a way in CsPro to capture time independent of the device time the app is running on?

Regards,
KARABENTA Sidiki
by SKARA
March 3rd, 2020, 8:21 pm
Forum: Entry
Topic: skipping fields
Replies: 4
Views: 3287

Re: skipping fields

Note that in recent versions of CSPro we have moved away from set behavior and set attributes. Those commands have been replaced with setproperty() https://www.csprousers.org/help/CSPro/setproperty_function.html. ==================== Hi AriSilva, So you can use the syntax below : //Main syntax : Pr...
by SKARA
February 28th, 2020, 7:46 pm
Forum: Entry
Topic: skipping fields
Replies: 4
Views: 3287

Re: skipping fields

AriSilva, In your situation, I advise you not to include 999 in the list of possible values of field2 so that the operators do not enter this value in the program by mistake. So you can try the following syntax: //Main syntax : Proc QuestionToBeSkipped onfocus //Universe = condition under which the ...
by SKARA
September 13th, 2018, 6:07 pm
Forum: Entry
Topic: extract the nth value from a valueset and fill a field with this value
Replies: 3
Views: 2897

Re: extract the nth value from a valueset and fill a field with this value

The only way to get the labels from a value set is to use the getlabel function. This works fine if you have a value set with consecutive discrete values, but if you have gaps in data (like you skipped D and France was E), then this will be a problem for you. I could get Ghana with code like this: ...