Search found 1801 matches

by Gregory Martin
March 6th, 2013, 11:41 am
Forum: Entry
Topic: Problems exporting
Replies: 6
Views: 5697

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: 5697

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: 2928

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: 12011

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: 3517

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: 4133

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: 5637

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...
by Gregory Martin
February 27th, 2013, 9:18 am
Forum: Entry
Topic: Error report by province in batch file
Replies: 1
Views: 3100

Re: Error report by province in batch file

If you only want to run the report for a certain province, you could use the endcase function to selectively process cases. For example: PROC QUEST preproc if PROVINCE <> 5 then // only process province 5 endcase ; endif ; You could customize what province you want to display by editing the PFF file...
by Gregory Martin
February 27th, 2013, 8:36 am
Forum: Entry
Topic: CSpro 5 and Windows 8 Compatitibility
Replies: 3
Views: 3517

Re: CSpro 5 and Windows 8 Compatitibility

This is a known problem that we are seeking to address. In the meantime, there is a workaround: Open your task manager, locate the process TabTip.exe (it may be called something like "Text Input Panel" or "Touch Keyboard and Handwriting Panel"), and end that process. You won't be...
by Gregory Martin
February 26th, 2013, 9:20 pm
Forum: Entry
Topic: merging forms?
Replies: 1
Views: 3176

Re: merging forms?

You might want to post your application here so that we can take a look at it. I'm a bit confused about what you're asking about. What you call the Run Task Document is the PFF file that launches the data entry application. But then you are talking about questions not appearing. Are you saying that ...