Search found 1794 matches

by Gregory Martin
September 25th, 2014, 1:18 pm
Forum: Entry
Topic: Writeform function
Replies: 4
Views: 3848

Re: Writeform function

The problem with FViewer is that it is used by such a small group of users that working on it is not necessarily the best use of our programmers' time. However, we just got a new developer on staff, so it could be something that we could prioritize at some point. I believe that ICFI (Macro) used to ...
by Gregory Martin
September 25th, 2014, 11:56 am
Forum: Entry
Topic: Csentry run slowly
Replies: 11
Views: 71829

Re: Csentry run slowly

We may eventually move to HTML-based forms, though not in the near future. I'm surprised to hear of your problems with form slowness, as two gigabytes of RAM should be plenty when running CSPro. CSPro dates back to 2000, when 2GB would have been a lot. Does the problem occur on forms that only have ...
by Gregory Martin
September 25th, 2014, 11:51 am
Forum: Entry
Topic: Merge 2 dictionnaries
Replies: 3
Views: 3764

Re: Merge 2 dictionnaries

There's no way to automatically merge dictionaries because the header information in a dictionary can only appear once. If you concatenated three dictionaries together, you would have three header sections and three ID sections, which would be problematic. You could write code to read dictionaries t...
by Gregory Martin
September 25th, 2014, 11:47 am
Forum: Entry
Topic: Copy Table from previous case
Replies: 1
Views: 2211

Re: Copy Table from previous case

There is no way to directly access the information from one case while entering another case. Why are you separating the data that you are entering into two cases instead of keeping it as one case? If you want to share data between cases, you are best advised to maintain an external file that will c...
by Gregory Martin
September 25th, 2014, 11:42 am
Forum: Entry
Topic: CSentry Android Smartphone; GPS function and button
Replies: 12
Views: 13450

Re: CSentry Android Smartphone; GPS function and button

You'll likely want to add the button in the preproc of your program. That proc's name will end with _FF. Or you can add it in the preproc of the level. That's how it was done in the sample application: http://www.csprousers.org/beta/MetroSurvey.7z PROC METRO_SURVEY_QUEST preproc userbar ( clear ); u...
by Gregory Martin
September 25th, 2014, 11:36 am
Forum: Entry
Topic: Text field not accepting value from keyboard
Replies: 1
Views: 2427

Re: Text field not accepting value from keyboard

Is this on Android or on Windows? Does it always happen on the same field, or does the field where the problem occurs vary? We haven't heard of such a problem, and we would like to fix it if indeed it is a bug.
by Gregory Martin
September 25th, 2014, 11:33 am
Forum: Entry
Topic: Android version - sizing CAPI window to fit text
Replies: 6
Views: 5168

Re: Android version - sizing CAPI window to fit text

Keith,

Can you post an example of question text that has many blank lines showing under it? We can test it on a 7" tablet and see why we're incorrectly calculating the height of that question text window.
by Gregory Martin
September 25th, 2014, 11:30 am
Forum: Entry
Topic: pff file in android cspro application
Replies: 6
Views: 6373

Re: pff file in android cspro application

The problem is that skipped values have the special value notappl, not 0. If you want to sum up the C values, counting skipped fields as 0, then you have three options: 1) Use the sum function, which will count up the values, counting special values as 0. numeric summedTotal = sum (C); 2) Use logic ...
by Gregory Martin
September 25th, 2014, 10:46 am
Forum: Other
Topic: Unable to edit data in rooster
Replies: 6
Views: 10914

Re: Unable to edit data in rooster

It's hard to understand the problem with locked rosters without seeing your application. Perhaps you can post it here. Are you trying to add occurrences to a roster that had no occurrences when data was originally entered. Once you've added a third row to your roster (with Ctrl+F3), you should be ab...
by Gregory Martin
September 25th, 2014, 10:39 am
Forum: Feature Requests
Topic: Changing decimal points in table
Replies: 2
Views: 3516

Re: Changing decimal points in table

You are right that there are times when multiple-cell selection would be really useful when editing tables. I've been annoyed before when I had to make several cells bold, and it took so many mouse clicks to accomplish the task. You can change the number of decimal points for a whole row or column b...