Search found 572 matches

by khurshid.arshad
November 27th, 2016, 4:56 am
Forum: Entry
Topic: How to manage Alphanumeric variables
Replies: 2
Views: 2405

Re: How to manage Alphanumeric variables

Dear MarcOlivier; Maybe it works for you. if poschar("0123456789", $)=1 then if poschar("abcdefghijklmnopqrstuvwxyz",tolower($))>1 then errmsg ("message 1: you can not etnter alpha"); reenter; else endif; elseif poschar("abcdefghijklmnopqrstuvwxyz", tolower($)...
by khurshid.arshad
November 24th, 2016, 11:58 pm
Forum: Entry
Topic: restricting number for fields
Replies: 3
Views: 3163

Re: restricting number for fields

Dear Titus 1.I need to restrict a field to accept only 4 numbers during entry numeric findlength=length(strip(maketext("%d",variablename))); if findlength<4 then errmsg ("Answer is not correct."); reenter; else endif; 2. I need to restrict field not to accept zero during entry. T...
by khurshid.arshad
November 23rd, 2016, 9:23 am
Forum: Other
Topic: CSPro 7.0 beta web server
Replies: 14
Views: 31108

Re: CSPro 7.0 beta web server

thanks josh.
a.
by khurshid.arshad
November 23rd, 2016, 6:43 am
Forum: Other
Topic: CSPro 7.0 beta web server
Replies: 14
Views: 31108

Re: CSPro 7.0 beta web server

Dear lls

From where i can get "Web Server Setup.pdf' file.
Thanks.
a.
by khurshid.arshad
November 23rd, 2016, 12:50 am
Forum: Entry
Topic: Force Cursor to Top of the screen during Data Entry
Replies: 12
Views: 9185

Re: Force Cursor to Top of the screen during Data Entry

Dear Yanina; I don't think so F2 function exist in the tablet, but you can set the combo box(note: not drop down) option for this field on the desktop/laptop and after that copy your program on the tablet. In this case the list will not pop-up till you press the right side corner on the combo box in...
by khurshid.arshad
November 22nd, 2016, 7:19 am
Forum: Entry
Topic: using tablets for data collection
Replies: 2
Views: 2865

Re: using tablets for data collection

Dear Titus

Please don't rename data file in the tablet, otherwise you can not open your file in tablet.

Just copy and paste your file from tablet to desktop/laptop, and then rename and merge.

a.
by khurshid.arshad
November 16th, 2016, 6:48 am
Forum: Entry
Topic: Allowing Blanks for Numeric Fields
Replies: 4
Views: 5057

Re: Allowing Blanks for Numeric Fields

Dear Titus
Please see age variable in attached file.
a.
by khurshid.arshad
November 15th, 2016, 8:56 am
Forum: Entry
Topic: Automatic data capture
Replies: 6
Views: 4408

Re: Automatic data capture

exactly
a.
by khurshid.arshad
November 15th, 2016, 5:24 am
Forum: Entry
Topic: Automatic data capture
Replies: 6
Views: 4408

Re: Automatic data capture

Dear Titus

Please use notappl option in value set and what do you mean vain.
a.
by khurshid.arshad
November 15th, 2016, 3:09 am
Forum: Entry
Topic: Automatic data capture
Replies: 6
Views: 4408

Re: Automatic data capture

Dear Titus string AlphaQID ; AlphaQID =Concat (Strip(Maketext("%01d",Q_1_1)), //"%01d" variable lenght is 1 Strip(Maketext("%01d",Q_1_2)), //"%01d" variable lenght is 1 Strip(Maketext("%02d",Q_1_4)), //"%02d" variable lenght is 2 with zero ...