Search found 1786 matches

by Gregory Martin
April 16th, 2024, 11:34 am
Forum: Entry
Topic: File copy to csentry folder
Replies: 2
Views: 3150

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: 207

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: 94

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: 195

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: 10

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: 108

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: 131

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
by Gregory Martin
April 15th, 2024, 10:29 am
Forum: Tools
Topic: Export To Stata: 2+ Multiple-Occurence Records
Replies: 1
Views: 79

Re: Export To Stata: 2+ Multiple-Occurence Records

Exporting data from cases where multiple records contain multiple occurrences is always tricky. Your best options are: 1) Change the Output... to "All in One Record." 2) Keep "As Separate Records" but run multiple exports, one for each repeating record, and then combine the data ...
by Gregory Martin
April 11th, 2024, 9:20 am
Forum: Android
Topic: Stranging behaviour of multi language CAPI application: Showing previous case value set and CAPI Text
Replies: 4
Views: 203

Re: Stranging behaviour of multi language CAPI application: Showing previous case value set and CAPI Text

I'm not sure if this is fully the issue, but when I was testing your code, there were some issues after changing from English to Hindi and then trying to change back to English. The reason is that you are using two codes for English. In the dictionary, English is defined with the name "EN."...
by Gregory Martin
April 11th, 2024, 9:15 am
Forum: Entry
Topic: How to identify the usage of the arrow keys
Replies: 6
Views: 131

Re: How to identify the usage of the arrow keys

On Windows, you can also keep track of all keys:
numeric lastKeystroke;

function OnKey(keystroke)
    lastKeystroke = keystroke;
    exit keystroke;
end;
Then you can look at lastKeystroke to determine if the last pressed key was an Enter, left arrow, tab, right arrow, etc.