Android security restrictions prevent you accessing from data in most folders, but you can access files in the Downloads directory. See more here:
https://www.csprousers.org/help/CSPro/a ... tions.html
Search found 1838 matches
- September 26th, 2024, 7:54 am
- Forum: Entry
- Topic: Copy files
- Replies: 1
- Views: 916
- September 4th, 2024, 8:07 am
- Forum: Android
- Topic: Item label to Question text
- Replies: 4
- Views: 616
Re: Item label to Question text
That feature was added in November 2018. Maybe we need to do a better job highlighting new features...
- September 3rd, 2024, 7:46 am
- Forum: Android
- Topic: Item label to Question text
- Replies: 4
- Views: 616
Re: Item label to Question text
It sounds like you want to use the feature "Initialize as Dictionary Label" that is part of Question Text Macros:
https://www.csprousers.org/help/CSPro/q ... acros.html
https://www.csprousers.org/help/CSPro/q ... acros.html
- August 19th, 2024, 10:22 am
- Forum: Entry
- Topic: Deploying files on csweb
- Replies: 2
- Views: 3108
Re: Deploying files on csweb
There is no way, using CSDeploy, to specify that you want the application deployed to a specific subdirectory. Why do you need this specific path? You can always: 1) Use CSDeploy to deploy to a "Local folder." 2) Upload the files from this folder (using syncfile) to a specific location on ...
- August 15th, 2024, 11:33 am
- Forum: Android
- Topic: SetOccLabel Function Erorr in v8
- Replies: 10
- Views: 9942
Re: SetOccLabel Function Erorr in v8
Sorry for the delayed response. CSPro sometimes has bugs related to using multiply-occurring items on multiply-occurring records. At some point we intend to revisit the code related to this, which is now several decades old, but for now we generally advise against these multiple levels of repetition...
- August 15th, 2024, 10:23 am
- Forum: Entry
- Topic: Conditional Questions are not working properly
- Replies: 5
- Views: 6124
Re: Conditional Questions are not working properly
None of us were able to replicate this behavior. Your screenshot definitely suggests that it is an error, but without being able to reproduce it, it is hard for us to provide guidance.
You might consider upgrading to CSPro 8.0 ... hopefully your application will work in that newer version.
You might consider upgrading to CSPro 8.0 ... hopefully your application will work in that newer version.
- August 14th, 2024, 8:01 am
- Forum: Entry
- Topic: Load ArcGIS FieldMaps from CSEntry
- Replies: 2
- Views: 2815
Re: Load ArcGIS FieldMaps from CSEntry
With the current Android security settings, you won't be able to do much with execsystem. Take a look at page describing ways to interact with other applications: https://www.csprousers.org/help/CSPro/android_interacting_with_other_applications.html You'll likely have to ask Esri, but your best opti...
- August 5th, 2024, 12:13 pm
- Forum: Editing
- Topic: Program does not run
- Replies: 3
- Views: 6914
Re: Program does not run
FYI...this will be fixed in CSPro 8.1.
- August 2nd, 2024, 3:49 pm
- Forum: Other
- Topic: Interesting CSPro compiler quirk I found today
- Replies: 5
- Views: 5922
Re: Interesting CSPro compiler quirk I found today
Binding function parameters via lambda expressions could result in the the lazy evaluation that Josh mentions. For instance in C++: int GetArgument() { return 1; } void func1(int x) { } void func2(std::function<int()> get_x) { } func1(GetArgument()); func2([] { return GetArgument(); }); With func2, ...
- August 2nd, 2024, 10:49 am
- Forum: Other
- Topic: Interesting CSPro compiler quirk I found today
- Replies: 5
- Views: 5922
Re: Interesting CSPro compiler quirk I found today
Wow, that is a quirk! Without even looking at the C++ code, I know that it's true that if a function has no body, that the arguments aren't evaluated. I'll change that for CSPro 8.1.