Search found 1838 matches

by Gregory Martin
September 26th, 2024, 7:54 am
Forum: Entry
Topic: Copy files
Replies: 1
Views: 916

Re: Copy files

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
by Gregory Martin
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. :D Maybe we need to do a better job highlighting new features...
by Gregory Martin
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
by Gregory Martin
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 ...
by Gregory Martin
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...
by Gregory Martin
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.
by Gregory Martin
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...
by Gregory Martin
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.
by Gregory Martin
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, ...
by Gregory Martin
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.