Search found 1789 matches

by Gregory Martin
April 16th, 2024, 12:51 pm
Forum: Android
Topic: Urdu Font
Replies: 4
Views: 193

Re: Urdu Font

It looks like you can change the font on some Android devices: https://www.androidpolice.com/change-font-android-phone/ I was not able to on my Pixel 7 though, so I'm not sure there's really a great option to modify the font. If you want to build a custom CSEntry and modify the font that we use, you...
by Gregory Martin
April 16th, 2024, 12:34 pm
Forum: Android
Topic: Checkbox
Replies: 1
Views: 78

Re: Checkbox

If you search for "ischecked" on the forum, you'll see some posts about dynamically working with checkbox selections. But even better is to look at the Simple CAPI example included with CSPro. The logic for MAIN_LANGUAGE essentially does what you are asking for: PROC MAIN_LANGUAGE onfocus ...
by Gregory Martin
April 16th, 2024, 12:17 pm
Forum: Entry
Topic: gps function in preproc
Replies: 3
Views: 173

Re: gps function in preproc

You're right that this is a problem. I've fixed it, so if you enable the location, the interactive GPS reading occurs correctly.

We could fix this in a CSPro 8.0.2 release (if we do another minor release). How big a problem is this for your survey operation?
by Gregory Martin
April 16th, 2024, 11:34 am
Forum: Entry
Topic: File copy to csentry folder
Replies: 2
Views: 3154

Re: File copy to csentry folder

In CSPro 8.0, there are new ways to share files with other applications, or to copy to/from directories other than the CSEntry directory. See more here:

https://www.csprousers.org/help/CSPro/a ... tions.html
by Gregory Martin
April 16th, 2024, 11:28 am
Forum: Android
Topic: pass value via intent
Replies: 2
Views: 214

Re: pass value via intent

Are you still stuck on this? If so, are you saying that this doesn't work? intent.putExtra("Key", "your case key"); We added the ability to run CSEntry from other applications years ago and don't use it ourselves, so it doesn't get much testing. If this is still a problem, I can ...
by Gregory Martin
April 16th, 2024, 10:15 am
Forum: Android
Topic: get value from android os data
Replies: 2
Views: 101

Re: get value from android os data

If you are using paradata, you can query the paradata log. That Build.MANUFACTURER value is logged in the device_info table, device_manufacturer column. You can query the paradata log using the paradata function, or the Sqlite.exec action: https://www.csprousers.org/help/CSPro/CS_Sqlite_exec.html ht...
by Gregory Martin
April 16th, 2024, 10:10 am
Forum: Feature Requests
Topic: Batch application on Android
Replies: 1
Views: 219

Re: Batch application on Android

We will support this at some point, as it would be very valuable, but as we are a very small programming team, it keeps getting pushed down the road. Some people have simulated a batch application by running an entry application that has the dictionary attached as an external dictionary, and then us...
by Gregory Martin
April 16th, 2024, 9:52 am
Forum: Entry
Topic: cursor location in Data Entry
Replies: 1
Views: 17

Re: cursor location in Data Entry

Take a look at the settings for data entry PFFs: https://www.csprousers.org/help/CSPro/run_production_data_entry.html 1) What you could do is define a custom parameter and then, if it is defined, use it to skip to a specific field. For example: PROC YOUR_LEVEL preproc if sysparm ( "StartingFiel...
by Gregory Martin
April 15th, 2024, 10:32 am
Forum: Entry
Topic: HTMLdialog hide buttons
Replies: 6
Views: 192

Re: HTMLdialog hide buttons

What is your resolution setting? https://www.windowscentral.com/how-set-custom-display-scaling-setting-windows-10 If 125%, try at 100% and see if it you still have a problem. Regardless, these HTML dialogs were designed with screen resolution in mind, so we'll have to take a look and see if we can i...
by Gregory Martin
April 15th, 2024, 10:30 am
Forum: Entry
Topic: How to identify the usage of the arrow keys
Replies: 6
Views: 210

Re: How to identify the usage of the arrow keys

Regarding the OnKey function, which does indeed work only on Windows, you can use the OnKey Character Map to determine the keystrokes for left, right, etc.:

https://www.csprousers.org/help/CSPro/o ... r_map.html