Search found 63 matches

by Saint
April 15th, 2016, 12:49 am
Forum: Other
Topic: Skip in a Roster According to Number of Members
Replies: 4
Views: 5511

Re: Skip in a Roster According to Number of Members

I think anybody requires more details to be able to help with your type of questions. From which point do you want to skip to the next member or to Q12? I can guess that you want to move from a quetion within the roster, but not the last question that will automatically move you to the next person i...
by Saint
April 1st, 2016, 9:59 am
Forum: Entry
Topic: Error mesage
Replies: 4
Views: 4320

Re: Error mesage

Can use this code:

Code: Select all

if var = notappl or missing then "type error message to display here"; endif;
by Saint
April 1st, 2016, 2:30 am
Forum: Entry
Topic: Data Auto-fill in Roaster
Replies: 9
Views: 8650

Re: Data Auto-fill in Roaster

Hi Subash, Take a look at the attached. I autofill roster 2 with information entered in roster 1 with the most basic logic. I use the curocc instead of an index to loop. If you truly want the autofill so that the fields in roster 2 may not be changed, then you can consider protecting the fields in r...
by Saint
March 30th, 2016, 10:41 am
Forum: Entry
Topic: Programatically close application and open the other
Replies: 6
Views: 5830

Re: Programatically close application and open the other

Hi, I hope you have previously launched the Main application (.pen or .enc) to create the .pff. If the .pff does not exist yet, it will not run. If the .pff does exist, the opening of Main and the closing of the Menu should be in the same line of code as follows. execPFF(".\Main.pff", mini...
by Saint
March 29th, 2016, 2:49 am
Forum: Entry
Topic: Data Auto-fill in Roaster
Replies: 9
Views: 8650

Re: Data Auto-fill in Roaster

Hi Subash, As Josh indicated, you have to use the row subscripts in the logic. So your logic should look something like this: PROC Q401C_2 preproc for i in newroster do Q401C_2(i) =Q401C_1(i); enddo; I guess this second part is supposed to be a post proc. If $=missing then skip to Q401A_3; endif; Fo...
by Saint
March 28th, 2016, 7:17 am
Forum: Entry
Topic: Data Auto-fill in Roaster
Replies: 9
Views: 8650

Re: Data Auto-fill in Roaster

Hi Subash, Yes, you can autofill a field with the content of another field. By extension, you can autofill a roster with the corresponding variables from another roster. It has to be done with individual field by field matching. If you can give more details of what exactly your scenario is, it would...
by Saint
March 21st, 2016, 3:58 pm
Forum: Entry
Topic: problem with excel2cspro
Replies: 10
Views: 8219

Re: problem with excel2cspro

One key point to note about setting up the dictionary is what makes up the record type. I typically set this to start at 0 with a length of 0. Once you leave the defaults of starting at 1 with a length of 1, you are likely to run into problems with the relative positions.
by Saint
March 18th, 2016, 3:24 am
Forum: Entry
Topic: multiple check in the checkbox with multiple specify
Replies: 6
Views: 5085

Re: multiple check in the checkbox with multiple specify

Can try this:

Code: Select all

if pos("F",SP08) <> 0 and length(strip(SP08)) > 1 then
      errmsg("Option No Aid cannot be selected together with some other option");
      reenter;
   endif;
by Saint
March 16th, 2016, 3:11 pm
Forum: Other
Topic: Exporting .not file along with Data file
Replies: 11
Views: 12278

Re: Exporting .not file along with Data file

Yes.. You have to create a new dictionary from scratch. The ID items should be the same as you have for the main dictionary used for the original application. Then you can add a record in which you have the the following three variables with the corresponding lengths: variable name with length 42 (t...
by Saint
March 16th, 2016, 12:29 pm
Forum: Entry
Topic: Sum within a roster with a skip
Replies: 6
Views: 5471

Re: Sum within a roster with a skip

Hi Anysia,
Find attached the revised program that simplifies what you want to do.

Best.