Search found 1794 matches

by Gregory Martin
March 9th, 2013, 12:33 am
Forum: Feature Requests
Topic: documentation in Russian?
Replies: 3
Views: 5239

Re: documentation in Russian?

We used to have a Russian speaker on the staff but, sadly, they left a few years ago. As far as I know, there are only English, French, and Spanish CSPro materials out there.

I would love it if an organization translated some of the materials to Russian.
by Gregory Martin
March 6th, 2013, 8:43 pm
Forum: Editing
Topic: Poschar for multiple variable
Replies: 1
Views: 4578

Re: Poschar for multiple variable

See attached for a sample application that demonstrates how to do this. It's a little trickier than necessary because I made it a data entry application where you can see the results for yourself. But the idea here is that you loop through each character of your alpha variable and then search for it...
by Gregory Martin
March 6th, 2013, 11:41 am
Forum: Editing
Topic: Ctrl + F12
Replies: 8
Views: 10573

Re: Ctrl + F12

Have you looked into the endlevel statement?
by Gregory Martin
March 6th, 2013, 11:41 am
Forum: Entry
Topic: Problems exporting
Replies: 6
Views: 5685

Re: Problems exporting

FYI ... this was resolved over email.
by Gregory Martin
March 5th, 2013, 10:30 pm
Forum: Entry
Topic: Problems exporting
Replies: 6
Views: 5685

Re: Problems exporting

It is hard to know what the problem is without seeing your data file. If you don't mind sharing the file, send it and your dictionary to gregory.martin@census.gov and I can see if I can identify the problem. You also might consider upgrading from CSPro 3.3 to the newest version, 5.0. It is possible,...
by Gregory Martin
March 5th, 2013, 6:05 pm
Forum: Entry
Topic: Problem coding a selcase
Replies: 1
Views: 2920

Re: Problem coding a selcase

This works for me. Run the attached application and enter either AAA, BBB, or ZZZ. You'll get the selcase window and then your error message. Is the problem that your string comparison is not taking into account the case of the string? In that case, you might want to write code like this: ok = selca...
by Gregory Martin
March 5th, 2013, 5:54 pm
Forum: Other
Topic: Inserting Image in CAPI
Replies: 9
Views: 11988

Re: Inserting Image in CAPI

Is your image file in bitmap format (.bmp)? That is the only file format that can be inserted in the CAPI text window.
by Gregory Martin
February 27th, 2013, 2:45 pm
Forum: Entry
Topic: CSpro 5 and Windows 8 Compatitibility
Replies: 3
Views: 3505

Re: CSpro 5 and Windows 8 Compatitibility

For those who were having problems with Windows 8 and CSPro 5.0.2, try the beta version of 5.0.3. We believe that we have fixed the problem:

http://www.csprousers.org/beta/

Please let us know if you still have problems viewing the forms tree.
by Gregory Martin
February 27th, 2013, 1:35 pm
Forum: Entry
Topic: Replace wrong text with correct text
Replies: 2
Views: 4123

Re: Replace wrong text with correct text

Perhaps you can create a dictionary of words that you want to modify and then use the loadcase function to change these words. See the attached program.
PROC WORD

    
if loadcase(WORDS_DICT,WORD) then
        WORD = GOOD_WORD;
    
endif;
by Gregory Martin
February 27th, 2013, 9:27 am
Forum: Entry
Topic: Looping within second level
Replies: 5
Views: 5622

Re: Looping within second level

Loadcase requires that the parameter that you search for must exactly match the ID in the data file. Is there a reason you are making the cluster and HH IDs alpha in your dictionary? Those IDs should be identical to the IDs in the dictionary used to create the data file from which you will load data...