Search found 42 matches

by kakinyim
April 21st, 2015, 8:53 am
Forum: Entry
Topic: Disable Data Entry Menu
Replies: 3
Views: 4038

Disable Data Entry Menu

Is there a way to disable the top menu on data entry application (CSentry mode)? I would love to know how to so that keyers don't have to click things they are not allowed to.

Mutua
by kakinyim
March 8th, 2015, 12:09 pm
Forum: Entry
Topic: use of more than 1 setvalueset function
Replies: 0
Views: 14038

use of more than 1 setvalueset function

Iam wondering if one can have two of these for different questions in the same app?  setvalueset(); and set attributes () assisted on (responses) I have two in my app but the first one doesn't appear on development computer while the second shows very well.

Mutua
by kakinyim
November 10th, 2014, 9:11 am
Forum: Other
Topic: ICFI Table Documentation
Replies: 1
Views: 3290

ICFI Table Documentation

Greg,
Do have any documentation of the ICFI (Measure DHS) Tabulation tool they call "Tables.exe" ? I have checked in 'Google' but he (it!!) doesnt seem to have heard/seen it.

Mutua
by kakinyim
January 22nd, 2014, 2:26 pm
Forum: Entry
Topic: Program stops working on data entry
Replies: 3
Views: 4061

Re: Program stops working on data entry

Gonzalop,
Will you mind sharing the program here? Maybe someone will find the bug.

Mutua
by kakinyim
January 22nd, 2014, 2:17 pm
Forum: Entry
Topic: Copy Questionnaire ID from PFF file
Replies: 6
Views: 7663

Re: Copy Questionnaire ID from PFF file

Arshad, I forgot to login. Mutua Hi Arshad, Nice to see your request. How is Pakistan? As you wait for Greg's reply, I wish to share with you I how I do this. First, I have two applications. One writes a PFF file and I insert parameters in the file. On the other application, I use sysparm() to read ...
by kakinyim
January 5th, 2014, 7:02 am
Forum: Tabulation
Topic: Using the count function across sections
Replies: 2
Views: 5275

Re: Using the count function across sections

Telimore,
Your question is not very clear but if I got it, you need to setup a relationship for the two rosters.

While at the dictionary mode, go to edit menu and click on 'Relations' and proceed from there. You can also check on relations documentation.

Mutua
by kakinyim
November 5th, 2013, 7:16 am
Forum: Other
Topic: Escaping charactrers in CSPro
Replies: 3
Views: 4951

Re: Escaping charactrers in CSPro

You can't use the + operator to combine two strings. This is why you're getting the error on the fourth line. You can write: errmsg ( "TaskList = %d" , execsystem ( concat ( 'cmd /k tasklist /fi "imagename eq csentry.exe" > ' ,defaultPath))); Thank you, it has worked. Mutua
by kakinyim
November 1st, 2013, 4:14 pm
Forum: Other
Topic: Escaping charactrers in CSPro
Replies: 3
Views: 4951

Escaping charactrers in CSPro

I am trying to pass defaultPath variable to line 4 below. 1. errmsg("File Assigned = %d", setFile(instanceFile, concat(pathname(Temp),"instances.txt"),create )); 2. defaultPath = concat(pathname(Temp),"instances.txt"); 3. errmsg(defaultPath); 4. errmsg("TaskList = ...
by kakinyim
August 18th, 2013, 5:21 am
Forum: Entry
Topic: Urgent help on adding Skips
Replies: 3
Views: 5783

Re: Urgent help on adding Skips

shrestharaj, Welcome to the CSPro family. I urge you to study 'SKIP' documentation by pressing F1 when at the design mode. I have pasted below some notes from the documentation of 'SKIP' function. If you still have doubts, please get in touch. Mutua Skip Statement Documentation Format 1: skip [to [n...
by kakinyim
June 5th, 2013, 2:44 am
Forum: Entry
Topic: Use of execsystem
Replies: 1
Views: 2274

Re: Use of execsystem

mardelhi1: You only need to use CSPro documentation to find an exampe. For instance, I pressed F1 while in CSPro and I typed 'Execsystem'. The help displayed Execsystem Function and examples were provided below such as, Execsystem("c:\windows\calc.exe"); This function is used to call (run)...