Page 1 of 1

SYNCHRONIZATION IN tablet

Posted: March 15th, 2020, 8:34 am
by Aboma
Hello,
I have developed .PNC file and dropped in directory Csentry (CSPro 7.3) in tablet. Now I want to sync data to dropbox, But I cannot see synchronization option in csentry in my tablet. I see only add application option.

Re: SYNCHRONIZATION IN tablet

Posted: March 16th, 2020, 6:39 am
by khurshid.arshad
Dear Aboma;

Please use
Deployment Application
instead of .PNC. You can not get data through Add Application.

The syntax is as follows for Data synchronization from table to Dropbox:

Code: Select all


	if syncconnect(Dropbox)=1 then
			   setfile(Dictionary_Name, "..\Data\"+"*.csdb");
			syncdata(PUT,Dictionary_Name);
			syncdisconnect();
			stop(1);
		endif;
Please use this syntax in your application after make changes as per your path.

Please use Data Viewer to download data from dropbox to system.

Best.

a.

Re: SYNCHRONIZATION IN tablet

Posted: March 16th, 2020, 9:14 am
by aaronw
The 6.x PNC sync functionality was removed from CSPro in version 7.2. You know have two options going forward:
  1. Simple sync which is appropriate to sync the main data file when there is no menu application
  2. Sync from logic when you're using a menu application and want to sync data external dictionaries
Here's an overview of 7.x sync:
https://www2.census.gov/software/cspro/ ... n-help.pdf?#

Workshop materials which will walk you through the process step-by-step:
https://www.csprousers.org/resources/CS ... rkshop.pdf

7.3 sync helps:
https://www.csprousers.org/help/CSPro/s ... ation.html