Error: Unfortunately, CSEntry has stopped. Version 7.2

Discussions about CSEntry
Forum rules
New release: CSPro 8.0
Post Reply
khurshid.arshad
Posts: 571
Joined: July 9th, 2012, 11:32 am
Location: Islamabad, Pakistan

Error: Unfortunately, CSEntry has stopped. Version 7.2

Post by khurshid.arshad »

Dear Team;

Thank you for new version with the Block option.

Unfortunately Stop() function is giving error. Please advice.
Thank you.
a.

Code: Select all

Function SendReceivelistingArea();

	{*******************************************}
	{***   SEND LISTING AREA TO ENUMERATOR  ****}
	{*******************************************}
	{***   IS FILE ALREADY CREATED OR NOT   ****}

	FindResult=fileexist(concat ("..\106_Ext_Data\AssignListing-", edit("9999999",Pro_Code), ".txt"));

	{*******************************************}
	{***        IF FILE IS NOT CREATED      ****}

	If Par_Designation =1 and FindResult=0 then
		errmsg ("Listing Area [...Not Assigned/Non affecté...].");
		move to PRO_SUP_ID
		//		stop(1);
	else

		{*******************************************}
		{***         SYNCH ASSIGN LISTING       ****}

		If 	Par_Designation=2 then 		//If Enumerator login
			filedelete(concat("..\106_Ext_Data\AssignListing-","*.txt"));
			If	syncserver (Bluetooth, "..") then 	// Get the Assigned Enumeration Area from the Supervisor
				syncdisconnect();
				errmsg ("Assigned Area Received [...%d...].",Pro_Code);
			[u]stop(1);[/u]
			else
				move to PRO_SUP_ID;
			endif;

		elseif Par_Designation=1 then		//If Supervisor login
			if syncconnect(Bluetooth) then	// Send the Assigned Enumeration Area to the Enumerator
				syncfile(PUT, "..\106_Ext_Data\AssignListing-" + edit("9999999",Pro_Code) + ".txt", "/106_Ext_Data/");
				syncdisconnect();
				errmsg ("Assigned Area Send [...%d...].",Pro_Code);

				move to PRO_SUP_ID;
			else
				move to PRO_SUP_ID;

			endif;
		endif;
	endif;
end;



khurshid.arshad
Posts: 571
Joined: July 9th, 2012, 11:32 am
Location: Islamabad, Pakistan

Re: Error: Unfortunately, CSEntry has stopped. Version 7.2

Post by khurshid.arshad »

please see Line number 27 in my code.

Best.
a.
khurshid.arshad
Posts: 571
Joined: July 9th, 2012, 11:32 am
Location: Islamabad, Pakistan

Re: Error: Unfortunately, CSEntry has stopped. Version 7.2

Post by khurshid.arshad »

Dear Team;

Any update on my query.

Even my application is not working on tablet which was working on previous version.
Best.
a.
Gregory Martin
Posts: 1777
Joined: December 5th, 2011, 11:27 pm
Location: Washington, DC

Re: Error: Unfortunately, CSEntry has stopped. Version 7.2

Post by Gregory Martin »

We've used stop in 7.2 without problem, so it's probably something related to how it is being used in your application. Can you send your application to cspro@lists.census.gov?
khurshid.arshad
Posts: 571
Joined: July 9th, 2012, 11:32 am
Location: Islamabad, Pakistan

Re: Error: Unfortunately, CSEntry has stopped. Version 7.2

Post by khurshid.arshad »

Dear Gregory;

I have shared application on given email address.

Best.
a.
aaronw
Posts: 561
Joined: June 9th, 2016, 9:38 am
Location: Washington, DC

Re: Error: Unfortunately, CSEntry has stopped. Version 7.2

Post by aaronw »

Issue was fixed in CSEntry 7.2 (Android). You'll just need to re-download from Google Play Store.
khurshid.arshad
Posts: 571
Joined: July 9th, 2012, 11:32 am
Location: Islamabad, Pakistan

Re: Error: Unfortunately, CSEntry has stopped. Version 7.2

Post by khurshid.arshad »

Thank you. It is working now.

Best.
a.
Post Reply