Search found 51 matches

by gbos
September 3rd, 2017, 5:25 pm
Forum: Synchronization
Topic: CSWEB Configuration on WAMP Sever successfully running on Windows 10 failed!! Urgent Help needed!!!
Replies: 4
Views: 5468

CSWEB Configuration on WAMP Sever successfully running on Windows 10 failed!! Urgent Help needed!!!

I am looking for any urgent assistance to help me complete my CSWEB configuration setup. I have successfully installed WAMP Server on windows 10 laptop. The server is running Apache version 2.4.23, php 5.6.25 and mysql 5.7.14. Having successfully created a new user cspro using phpmyadmin, after CSWE...
by gbos
October 16th, 2015, 7:27 pm
Forum: Entry
Topic: Stop entering same value for variable more than two time
Replies: 2
Views: 3283

Re: Stop entering same value for variable more than two time

Thanks Noel, that is exactly the solution I am looking for. That logic worked perfectly fine. Once again thanks. :D ;)
by gbos
October 16th, 2015, 10:13 am
Forum: Entry
Topic: Stop entering same value for variable more than two time
Replies: 2
Views: 3283

Stop entering same value for variable more than two time

Dear Josh, In my household roster, I wanted to make sure that each household head can have only two parent. So, I used a numeric variable in my PROC GLOBAL: numberParents = 0; then // Using a numeric variable (defined in PROC GLOBAL), make sure that each head of household can have only two parents. ...
by gbos
October 1st, 2015, 10:24 am
Forum: Entry
Topic: Skipping a roster and pre-filling some of the variables
Replies: 8
Views: 8007

Re: Skipping a roster and pre-filling some of the variables

Dear Josh,
Once gain thanks and thanks a million times. Even that isn't enough for me. This is exactly what I was trying to accomplish. The logic you presented works fine!!! :D
by gbos
September 28th, 2015, 6:52 pm
Forum: Entry
Topic: Skipping a roster and pre-filling some of the variables
Replies: 8
Views: 8007

Re: Skipping a roster and pre-filling some of the variables

Thanks Josh for the reply. Absolutely, I want to set one to one correspondence between line numbers of section 1 to those of section4a. Therefore, if s1q4a >= 5 then automatically fill s4aq1 and s4aq2 with idnums and X's respectively from Section1 when section4a is in focus. I want to achieve this o...
by gbos
September 25th, 2015, 4:19 pm
Forum: Entry
Topic: Skipping a roster and pre-filling some of the variables
Replies: 8
Views: 8007

Re: Skipping a roster and pre-filling some of the variables

Dear Josh, Am happy to report that the program is now working fine, having tested few cases. However, one thing remained unsolved, that is, when the program is filling the IDs and X's it doesn't march exactly the IDs. For instance, On the Household Roster if IDnum 1,2,3,4 are eligible should be fill...
by gbos
September 23rd, 2015, 2:19 pm
Forum: Entry
Topic: Skipping a roster and pre-filling some of the variables
Replies: 8
Views: 8007

Re: Skipping a roster and pre-filling some of the variables

Josh thanks for the prompt reply. I tried testing the logic in the preproc of my sect4d. However, i noticed the following: the logic wouldn't compile, so I replaced your logic with the following which compiled successfully. numeric nextAvailable = 1; numeric m; do varying m = 1 until m > totocc(SECT...
by gbos
September 22nd, 2015, 3:38 pm
Forum: Entry
Topic: Skipping a roster and pre-filling some of the variables
Replies: 8
Views: 8007

Skipping a roster and pre-filling some of the variables

I was trying to automate some skips in my application with little success and the skip conditions are here explained. I have a household roster and rosters sections 4c, section4d, section 4e and section 4f. I want the following happen skips : 1. if in my section 4c, if s4cq4 = 0 and s4cq5 = 0 then c...
by gbos
September 20th, 2015, 12:53 pm
Forum: Entry
Topic: SKIPPING TO RECORD TYPE AFTER COMPLETING A ROSTER
Replies: 2
Views: 3563

Re: SKIPPING TO RECORD TYPE AFTER COMPLETING A ROSTER

Many thanks, Noel. The skip is now working. That is exactly what I wanted to do. Once again thanks. :D :)

Regards,
Gbos
by gbos
September 19th, 2015, 3:44 pm
Forum: Entry
Topic: SKIPPING TO RECORD TYPE AFTER COMPLETING A ROSTER
Replies: 2
Views: 3563

SKIPPING TO RECORD TYPE AFTER COMPLETING A ROSTER

I have a roster called sect5000 followed by another roster sect6000 which is followed by another roster called sect7a000. The data entry progresses according to how the rosters are. Finish sect5 automatically sect6 comes after finishing that sect7a comes etc, etc. Now my problem is sect5 is using an...