SYNCHRONIZATION IN tablet

Discussions about syncing data via Bluetooth, Dropbox, FTP, and using CSWeb
Post Reply
Aboma
Posts: 2
Joined: March 15th, 2020, 8:31 am

SYNCHRONIZATION IN tablet

Post 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.
khurshid.arshad
Posts: 572
Joined: July 9th, 2012, 11:32 am
Location: Islamabad, Pakistan

Re: SYNCHRONIZATION IN tablet

Post 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.
aaronw
Posts: 565
Joined: June 9th, 2016, 9:38 am
Location: Washington, DC

Re: SYNCHRONIZATION IN tablet

Post 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
Post Reply