Search found 109 matches

by lls
June 3rd, 2013, 5:42 pm
Forum: Entry
Topic: Adding/Modifying Items' Values after Data Entry Has Begun
Replies: 8
Views: 8669

Re: Adding/Modifying Items' Values after Data Entry Has Begu

bernices, Adding a new item in a record may be tricky as it would change the position data are recorded in the data file. If, as mutua suggest, you only need to add a value in a value set, there will be no consistency problems. You will have to modify the dictionary and transmit the updated applicat...
by lls
May 29th, 2013, 6:00 pm
Forum: Entry
Topic: Login form in CSPro
Replies: 10
Views: 10830

Re: Login form in CSPro

I think that if you distribute your CSPro application in binary (with .enc extention), one should not be able to access the code, so the password would be hidden.
by lls
April 19th, 2013, 11:45 am
Forum: Entry
Topic: Adding three field value and write in fourth fields
Replies: 5
Views: 6513

Re: Adding three field value and write in fourth fields

Hi,

Have you tried

Col5 = Col2 + col3 + col4
or
$ = Col2 + col3 + col4

?
by lls
March 9th, 2013, 7:47 am
Forum: Feature Requests
Topic: documentation in Russian?
Replies: 3
Views: 5192

Re: documentation in Russian?

I would be interested to have some material in french. Is there a CSPro manual in french as detailed as the one in English?
Could you please tell me where I could find/download such documentation?

Thank you
by lls
February 24th, 2013, 3:30 pm
Forum: Entry
Topic: Running PFFs on a server
Replies: 15
Views: 16939

Re: Running PFFs on a server

To be more precise, when a keyer start a session, he must enter the first letters of his first and last name: say AB for example. The first time, a .dat file is created named after his ID, here it would be AB.dat. Main files are on the server side and as many as there are keyers of course. Next time...
by lls
February 23rd, 2013, 3:26 pm
Forum: Entry
Topic: Running PFFs on a server
Replies: 15
Views: 16939

Re: Running PFFs on a server

kakinyim, please share with us your approach. We are all interested to see how others proceed for developing applications.
by lls
February 21st, 2013, 3:30 pm
Forum: Entry
Topic: Running PFFs on a server
Replies: 15
Views: 16939

Re: Running PFFs on a server

We made a data entry application that can be launched via a menu application. The folder with both data entry and menu application is located on a server and each keyers, who have CSPro installed on their PC, can start a session with a shortcut to the .PFF menu file on the server. When a keyer enter...
by lls
February 9th, 2013, 6:26 pm
Forum: Entry
Topic: Function to check duplicate values in multiple response vari
Replies: 3
Views: 4839

Re: Function to check duplicate values in multiple response

Do this work for you?

Code: Select all

do i = 1 while i < curocc()
		if $(i) = $ then
			errmsg("Value %d already in position # %d",$,i);
			reenter;
		endif;
	enddo;
by lls
February 5th, 2013, 4:42 am
Forum: Entry
Topic: Any way to get a printout of a case, with value labels?
Replies: 9
Views: 11856

Re: Any way to get a printout of a case, with value labels?

You could write a batch application using getlabel to create a HTML file with questions and labels for each cases in your datafile. HTML will allow you to setup presentation with a CSS file (colors, fonts, etc.) and print options. I have used this solution as my client wanted to be able to print out...
by lls
December 24th, 2012, 8:15 pm
Forum: Editing
Topic: How to separate data file by geographical code
Replies: 4
Views: 8807

Re: How to separate data file by geographical code

Thank you for the setoutput fonction and the split example.

It is very useful.