Search found 561 matches

by aaronw
September 28th, 2022, 6:49 pm
Forum: Synchronization
Topic: deploy application
Replies: 4
Views: 823

Re: deploy application

I'm translating the 405 error to "HTTP verb used to access this page is not allowed." When I do a google search for that phrase on stackoverflow.com I see a number of hits. I believe the issue is specific to a configuration on your production server and you'll need to walk through these se...
by aaronw
September 28th, 2022, 6:31 pm
Forum: Android
Topic: How to hide application listing on Android
Replies: 3
Views: 1418

Re: How to hide application listing on Android

The Household.pff is being deployed without the ShowInApplicationListing property. It's only after the household application is launched that the code is executed and it is added. Try adding the property to Household.pff manually, so it exists when the CSEntry is first run.
by aaronw
September 27th, 2022, 6:02 pm
Forum: Other
Topic: getDeviceID returns different values on the same device
Replies: 4
Views: 2465

Re: getDeviceID returns different values on the same device

On Windows the function returns the MAC address and Windows has an option to randomize it. The option is called "random hardware address." Any chance it is on?
by aaronw
September 26th, 2022, 3:52 pm
Forum: Android
Topic: How to hide application listing on Android
Replies: 3
Views: 1418

Re: How to hide application listing on Android

The PFF will only have the line once the logic is ran. Can you verify the PFF is in the correct location and has the property? If so, you can attach the project and I'll take a look.
by aaronw
September 20th, 2022, 5:56 pm
Forum: Other
Topic: Revoir un questionnaire
Replies: 2
Views: 1929

Re: Revoir un questionnaire

Currently, there is no built in functionality to do this. However, you can expect this functionality in the next release.
by aaronw
July 18th, 2022, 11:55 am
Forum: Android
Topic: Capi Text Table Formatting
Replies: 3
Views: 2261

Re: Capi Text Table Formatting

I was able to highlight the cells and change the formatting. See the screenshot for how I did it.
bold-cells.PNG
bold-cells.PNG (14.27 KiB) Viewed 2217 times
by aaronw
June 2nd, 2022, 6:49 pm
Forum: Entry
Topic: Create Conditional Questions
Replies: 4
Views: 1483

Re: Create Conditional Questions

I've added a simple application using curocc() as an example. Run the application and pay attention to the CAPI text for the NAME field. It will display the current row number. Then drop into the designer and inspect the CAPI text for NAME. Select each condition and notice the CAPI text changes.
by aaronw
June 2nd, 2022, 8:51 am
Forum: Entry
Topic: Dictionary
Replies: 11
Views: 12982

Re: Dictionary

We refer to this as a dynamic value set. You can loop through a dictionary and create a dynamic value set like this: preproc valueset vs; forcase STAFF_DICT do vs.add( strip (STAFF_NAME), STAFF_CODE); enddo ; setvalueset (SELECT_STAFF_NAME, vs); Check out this blog too. It goes into more depth: http...
by aaronw
April 26th, 2022, 5:37 pm
Forum: Editing
Topic: Roster coding
Replies: 1
Views: 2088

Re: Roster coding

Not sure I understand. Maybe the keyword reenter will help you out. https://www.csprousers.org/help/CSPro/reenter_statement.html If that's not helpful can you try to clarify the intended behavior. Also, attach the application with partial data and instructions to get the the particular field of the ...
by aaronw
April 26th, 2022, 5:18 pm
Forum: Synchronization
Topic: Error connecting to sync server:java.net.MalformedURLException
Replies: 2
Views: 1092

Re: Error connecting to sync server:java.net.MalformedURLException

Can you post or email (cspro@lists.census.gov) the URL? If the URL is constructed try outputting the string using the errmsg function. I'm curious to see if it is double quoted, has a space, or something else funky is going on.