Page 1 of 1

OnKey Character Map - on Andriod Tablet

Posted: August 23rd, 2016, 5:05 am
by khurshid.arshad
Dear CSPro Team
We are using Samsung Galaxy Tab S2 for our agriculture survey. OnKey Character Map is working on desktop/latptop but not on Samsung Galaxy Tab S2. Please Advice.
Regards

Code: Select all

Function OnKey(x);
	if getsymbol()="OP_Name"  or getsymbol()="Q_2_3_1"  then
		if x in  65:90,13, 8, 32, 46, 37:40, 1009,189  then
			{ Alpha "65:90, 13=Enter, 8=Bksp, 32=Space, 46=Delete, 189=-}
				onkey=x;
		else
			OnKey = 0;
		endif;
	elseif getsymbol()="Q_2_3_5" then
		if x in  48:57,13,8, 32, 46 then
			{ Number "65:90, 13=Enter, 8=Bksp, 32=Space, 46=Delete, 189=-, 9=Tab}
				onkey=x;
		else
			onkey=0;
		endif;

	else
		Onkey=x;
	endif;
end;

Re: OnKey Character Map - on Andriod Tablet

Posted: August 25th, 2016, 9:17 pm
by josh
The OnKey and OnChar functions are not supported on Android.