Search found 152 matches

by justinlakier
April 25th, 2024, 10:44 am
Forum: Entry
Topic: ow to use the new Operational Control Application
Replies: 1
Views: 50

Re: ow to use the new Operational Control Application

Hello, The new menu application should resemble your old approach. This is meant to be a quick and beginner-friendly way to get a menu started, since the operational control center was such a common strategy on surveys. An example of a menu is found in the examples folder in 1- Data Entry under the ...
by justinlakier
April 24th, 2024, 4:46 pm
Forum: Entry
Topic: Apps sharing the same external data file
Replies: 8
Views: 168

Re: Apps sharing the same external data file

Hello, If you need more examples, you can check the CSPro Examples folder, where the CAPI Census example uses shared external dictionaries and deploy scripts. If this does not help, please attach your zipped application here or send it to cspro@lists.census.gov if it is confidential, so that we can ...
by justinlakier
April 22nd, 2024, 4:16 pm
Forum: Entry
Topic: chanege value of external data file
Replies: 2
Views: 107

Re: chanege value of external data file

Hello, You can use WriteCase to update existing cases of an external data file. See posts on WriteCase here and here . If you want to use WriteCase() to edit a particular existing case, first load that case into memory with LoadCase() on that case's ID items, modify the item in memory that you want ...
by justinlakier
April 22nd, 2024, 3:04 pm
Forum: Android
Topic: Hide program in csEntry
Replies: 2
Views: 46

Re: Hide program in csEntry

Hello, You can open an application's .pff file in a text editor of your choice and add "ShowInApplicationListing=Never" to the [Run Information] section to make sure that the application is hidden from the user in CSEntry. More details are available at the pff properties documentation here...
by justinlakier
April 22nd, 2024, 2:56 pm
Forum: Entry
Topic: Item Divider for Menu
Replies: 1
Views: 103

Re: Item Divider for Menu

Hello, Referring to this post , you can add the divider to the value set and make sure in the PostProc that the divider was not selected. You can also use a customized htmldialog for this. You might either pass in the value set as input data or hard-code the value set in the HTML file if it is not s...
by justinlakier
April 22nd, 2024, 1:16 am
Forum: Entry
Topic: Apps sharing the same external data file
Replies: 8
Views: 168

Re: Apps sharing the same external data file

Hello, here is the documentation on external data files. It has links to the documentation pages for lookup files and inserting/dropping files from an application as well. To have two apps share an external data file, add the dictionary to both as an external file by going to File -> Add Files -> Ex...
by justinlakier
April 19th, 2024, 11:12 am
Forum: Entry
Topic: Help Urgent... Publish and deploy
Replies: 2
Views: 110

Re: Help Urgent... Publish and deploy

Hello, Please see this post on the forums. Make sure that you are not deploying data files in such a way that they will overwrite the user's data files. This will definitely happen if you are reinstalling. Only necessary lookup files should be deployed, and other data files can be synced in logic. W...
by justinlakier
April 17th, 2024, 11:32 am
Forum: Tabulation
Topic: How add weight on tabulation
Replies: 2
Views: 210

Re: How add weight on tabulation

Hello, Have you checked the documentation page on tabulating weights? It includes links to more detailed information about how to add weight on tabulation, such as on this page . If you are running into additional errors while trying to execute the steps outlined in the documentation, please let us ...
by justinlakier
April 17th, 2024, 10:48 am
Forum: Entry
Topic: slow query ..Help
Replies: 1
Views: 114

Re: slow query ..Help

Hello, You can use StartsWith to optimize a search of your database by making sure it only searches through relevant cases. The "where" clause only filters the cases that SelCase has already found, your "StartsWith" needs to be after the dictionary name in the SelCase function, a...
by justinlakier
April 15th, 2024, 10:14 am
Forum: Entry
Topic: setvalueset
Replies: 2
Views: 231

Re: setvalueset

Hello, Is this field protected? Trying to move into a protected field without setting a value set can cause problems. If not, could you post your application or more details on what the dictionary variable and logic look like, so we can tell why else it may be getting an out of range error in the pr...