Search found 160 matches

by justinlakier
March 13th, 2023, 5:12 pm
Forum: Entry
Topic: Creating a multiple response based on the non-selected response
Replies: 4
Views: 2495

Re: Creating a multiple response based on the non-selected response

Hi Sham, First, you need to declare the alpha valueset as "valueset string vs", or else it will default to a numeric valueset. Second, looping through curocc(Q1) doesn't make sense for your specific example. Instead, I changed it to loop through the Q1 string, removing each substring from ...
by justinlakier
March 13th, 2023, 10:13 am
Forum: Entry
Topic: Creating a multiple response based on the non-selected response
Replies: 4
Views: 2495

Re: Creating a multiple response based on the non-selected response

Hi sham, For this, you want a dynamic valueset using the valueset object and the valueset.remove function. Start out with Q1 and Q2 having the same valueset. After Q1 is selected, use Q2valueset.remove(value) for each Q1 value, and set that result as Q2's value set. This use of dynamic value sets to...
by justinlakier
March 10th, 2023, 3:49 pm
Forum: Entry
Topic: New sync to Dropbox
Replies: 23
Views: 324603

Re: synchronization problem through logic

Hi Zerfu, Looking through your logic, the lines in Menu's PROC NAME that you use to execpff use your computer's full path to these files. This won't work anywhere the full path doesn't match your own computer. I used a relative path instead, and changed the section to read if INTERVIIEWER_MENU=1 or ...
by justinlakier
March 10th, 2023, 10:07 am
Forum: Entry
Topic: Partial Save date issue
Replies: 3
Views: 3617

Re: Partial Save date issue

Hi Prab,

You can post a .zip containing the application files for us to check why entered data is going to DEFAULT. Or, if you'd prefer they not be public, you can send them to cspro@lists.census.gov.

Thanks,
Justin
by justinlakier
March 8th, 2023, 2:15 pm
Forum: Entry
Topic: New sync to Dropbox
Replies: 23
Views: 324603

Re: New sync to Dropbox

Hi Zerfu, The .pen files you provided can run the application, but can't be read in the CSPro designer. If you want us to be able to test the code and read the logic, we require the .ENT files as well, in a zip file with the entire application. This can be posted here or, if you'd rather it not be p...
by justinlakier
March 8th, 2023, 1:56 pm
Forum: Entry
Topic: Key android 12 and 13
Replies: 1
Views: 2702

Re: Key android 12 and 13

Hello,

Could you please attach your app files for testing, and provide additional details as to what went wrong and how?

Thank you,
Justin
by justinlakier
March 8th, 2023, 12:15 pm
Forum: Entry
Topic: Partial Save date issue
Replies: 3
Views: 3617

Re: Partial Save date issue

Hi Prab, You're probably getting this because the data you entered in that field is not matching the specifications in the dictionary, so it is being kept as DEFAULT. Make sure the dictionary and data match and are not corrupted. If a dictionary length was modified, this may make old data unreadable...
by justinlakier
February 28th, 2023, 4:00 pm
Forum: Feature Requests
Topic: trace on and off inside functions
Replies: 6
Views: 8298

Re: trace on and off inside functions

Hi Ari, You should be able to set trace on or off whenever you need to, such as turning trace off at the start of an uninteresting function and back on at the end of the function, or using an if statement to switch tracing on or off depending on a variable. The example on the Help page for Trace sho...
by justinlakier
February 8th, 2023, 9:02 am
Forum: Synchronization
Topic: Deleting Dropbox Login Information on Computer
Replies: 7
Views: 3248

Re: Deleting Dropbox Login Information on Computer

You should use Windows Credential Manager on your device to find and delete CSPro_sync_Dropbox, which will have CSPro forget your current Dropbox account settings and ask you for a different account. You can also use CSPro's File -> Settings -> Clear Credentials, but that will have CSPro forget all ...
by justinlakier
December 19th, 2022, 9:14 am
Forum: Entry
Topic: HTMLDialog select and choice
Replies: 7
Views: 7179

Re: HTMLDialog select and choice

Hello novaeus, You can try printing input.header out before you use its length, to make sure it contains a string or array. I don't see the header being initialized, which would make accessing its length an issue. You can also print out the input variable to make sure you're accessing the correctly ...