Search found 1790 matches

by Gregory Martin
December 24th, 2012, 1:35 pm
Forum: Entry
Topic: find data by row
Replies: 5
Views: 6782

Re: find data by row

Have you looked into the seek function? It will find data by occurrence number, which means that it will search for the first occurrence (row) that satisfies a given condition.
by Gregory Martin
December 20th, 2012, 11:26 am
Forum: Entry
Topic: Problems under Windows 8, even with the 5.02 beta
Replies: 4
Views: 4948

Re: Problems under Windows 8, even with the 5.02 beta

Actually, we identified the problem here. Windows changed the behavior of how file selection dialog boxes work starting with Windows Vista, and that affected a change we made in CSPro 5.0. We've fixed it and the new 5.0.2 release will have the fix. This new version is coming out tomorrow.
by Gregory Martin
December 19th, 2012, 10:23 am
Forum: Entry
Topic: Cyrillic in check boxes
Replies: 1
Views: 3056

Re: Cyrillic in check boxes

Anne, Indeed, this is a font issue on our end. The checkbox control isn't using a font that supports Cyrillic fonts. I've changed this for the 5.0.2 release, which should come out later this week. In the meantime, you can get it to work by adding this code to your application preproc: setfont (value...
by Gregory Martin
December 19th, 2012, 10:07 am
Forum: Entry
Topic: Problems under Windows 8, even with the 5.02 beta
Replies: 4
Views: 4948

Re: Problems under Windows 8, even with the 5.02 beta

We have tested the new beta on 5.0.2 and we haven't noticed these problems. Our testing team is limited, however, so it is possible that under a different software configuration we may have encountered these problems. The only guess I have related to your problems is that you are possibly creating a...
by Gregory Martin
December 19th, 2012, 10:01 am
Forum: Tabulation
Topic: Regroup all the values ​​that are less than 1
Replies: 7
Views: 8155

Re: Regroup all the values ​​that are less than 1%

Also, to do this I had to add idx as a temporary numeric variable to the logic (in the PROC GLOBAL section). To do this, press Control+L while viewing your table and you will have access to your table logic so that you can add the variable to PROC GLOBAL.
by Gregory Martin
December 19th, 2012, 10:00 am
Forum: Tabulation
Topic: Regroup all the values ​​that are less than 1
Replies: 7
Views: 8155

Re: Regroup all the values ​​that are less than 1%

This is possible, though it requires some programming. I've attached an example where you can see what I've done. Basically, I added Others as a value to the value set, at the end. And then in your table's PostCalc logic I go through all the cells of your table, and when there is only a value of 1, ...
by Gregory Martin
December 10th, 2012, 1:24 pm
Forum: Entry
Topic: Csentry run slowly
Replies: 11
Views: 71824

Re: Csentry run slowly

The upper case issue has been fixed. The new beta version fixes it. See here: http://www.csprousers.org/forum/viewtopic.php?f=1&t=516 The way that CSEntry stores data is not as efficient as a system like MySQL, so you will have performance issues when you're talking about as much as data as you ...
by Gregory Martin
December 10th, 2012, 1:03 pm
Forum: Entry
Topic: multpos
Replies: 5
Views: 7339

Re: multpos

You can definitely do this, but not as simply. Like so: PROC GLOBAL alpha ( 26 ) alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" ; function characterToNumber( alpha ( 1 ) char) numeric response = poschar ( toupper (char),alphabet); if not response then // not in A-Z= if char = 'ø' then response = ...
by Gregory Martin
December 8th, 2012, 1:07 pm
Forum: Editing
Topic: CSpro text viewer has stopped working
Replies: 12
Views: 39564

Re: CSpro text viewer has stopped working

That message appears when a problem occurs in the program, usually as a result of a memory issue not handled properly by the program. If you reboot the machine and you get the same problem, then it means that there is a bug with the Text Viewer program that we would like to fix. Are you using CSPro ...
by Gregory Martin
December 7th, 2012, 4:40 pm
Forum: Entry
Topic: Level change
Replies: 13
Views: 34251

Re: Level change

If you want to move from one level to the next one, you have to use the endlevel function.

Why are you using multiple levels though? Most applications don't require levels and using multiple records might be sufficient for your application.