Search found 1791 matches

by Gregory Martin
May 26th, 2017, 5:12 pm
Forum: Tools
Topic: Export Data from Excel To CSPro Data Entry
Replies: 13
Views: 14583

Re: Export Data from Excel To CSPro Data Entry

Sounds like you figured out a way to do this in CSPro (on the other topic).
by Gregory Martin
May 24th, 2017, 12:02 pm
Forum: Tools
Topic: Export Data from Excel To CSPro Data Entry
Replies: 13
Views: 14583

Re: Export Data from Excel To CSPro Data Entry

I'm not sure exactly what you mean, but if an item with occurrences exists, you can map each occurrence to a different column. See this image:
xl2cs_occurrences.png
xl2cs_occurrences.png (3.74 KiB) Viewed 4308 times
by Gregory Martin
May 21st, 2017, 8:44 am
Forum: Synchronization
Topic: Synchronization :Copying multiple files and putting multiple files in CSPro 7
Replies: 1
Views: 2488

Re: Synchronization :Copying multiple files and putting multiple files in CSPro 7

You should be able to use wildcards, so try one of the following:
syncfile(GET, "/Survey/*.pen")

syncfile(GET, "/Survey/?.pen")
by Gregory Martin
May 19th, 2017, 1:10 pm
Forum: Tools
Topic: Export Data from Excel To CSPro Data Entry
Replies: 13
Views: 14583

Re: Export Data from Excel To CSPro Data Entry

I'm glad that the answer was so simple. I hope you find use in the enhanced tool.
by Gregory Martin
May 18th, 2017, 12:01 pm
Forum: Feature Requests
Topic: Allow a last question when user close a case
Replies: 6
Views: 6143

Re: Allow a last question when user close a case

You could implement this yourself by adding a final field to your application. Then whenever you want to end your questionnaire, you would skip to that question.
by Gregory Martin
May 18th, 2017, 11:58 am
Forum: Entry
Topic: Restrict alpha/string field
Replies: 4
Views: 5007

Re: Restrict alpha/string field

For a numeric field, you could add a value set to the field, allowing codes 10000-99999. Or you could write:
PROC VALUE

    if VALUE < 10000 then
        errmsg("...");
        reenter;
    endif;
by Gregory Martin
May 11th, 2017, 3:38 pm
Forum: Entry
Topic: System error messages in other languages_
Replies: 2
Views: 2688

Re: System error messages in other languages_

Most of those messages are stored in this file:

C:\Program Files (x86)\CSPro 6.3\CSProRuntime.mgf

If you open it in a text editor and make changes to them, you should be able to modify them to Portuguese.
by Gregory Martin
May 9th, 2017, 7:32 am
Forum: Tools
Topic: Export Data from Excel To CSPro Data Entry
Replies: 13
Views: 14583

Re: Export Data from Excel To CSPro Data Entry

Can you send your Excel file to cspro@lists.census.gov? I wrote both the 6.3 and 7.0 tools, so I would like to fix any problems with them.
by Gregory Martin
May 9th, 2017, 7:31 am
Forum: Entry
Topic: Separate boxes for subitems
Replies: 5
Views: 5135

Re: Separate boxes for subitems

From the Options menu, select Drag. Select "Use subitems when present."

Now, when you drag items to the form, it should use the subitems (instead of the parent item).
by Gregory Martin
May 8th, 2017, 8:32 am
Forum: Android
Topic: Very dangerous problem with the function find on android when the dictionnary is the input_dict
Replies: 4
Views: 4518

Re: Very dangerous problem with the function find on android when the dictionnary is the input_dict

Can you send your application to cspro@lists.census.gov? I haven't noticed any other problems with the find function, so I would like to see all of your code and how the data files are being accessed.

If what you say is true, then we definitely need to fix find before we release CSPro 7.0.