Search found 572 matches

by khurshid.arshad
June 7th, 2017, 2:38 pm
Forum: Synchronization
Topic: Invalid file used with syncdata
Replies: 7
Views: 6227

Re: Invalid file used with syncdata

Dear Josh; This is the following code which i am using in my application and it is working. If I can improve this syntax, please give me some advice. Thank you. A. PROC GLOBAL Numeric iFile; list string filelisting; Function SynDatatoServer(); if syncconnect(Dropbox)=1 then dirlist (filelisting, &qu...
by khurshid.arshad
June 7th, 2017, 7:32 am
Forum: Synchronization
Topic: Invalid file used with syncdata
Replies: 7
Views: 6227

Re: Invalid file used with syncdata

Dear Josh

Thank you for your reply. Can you give me an example.
Thanks.
a.
by khurshid.arshad
June 7th, 2017, 1:58 am
Forum: Synchronization
Topic: Invalid file used with syncdata
Replies: 7
Views: 6227

Re: Invalid file used with syncdata

Dear Josh; File extension is “csdb” . My application structure is as follows: 1. Login screen 1.1 Cluster information Screen 1.1.1.1 Community Questionnaire (One questionnaire for each cluster) 1.1.1.2 Household Information (cover page and roster only) 1.1.1.3 Individual information (number of files...
by khurshid.arshad
June 6th, 2017, 10:57 am
Forum: Synchronization
Topic: Invalid file used with syncdata
Replies: 7
Views: 6227

Invalid file used with syncdata

Dear team I am facing this error during synchronization with dropbox: Invalid file used with syncdata for "dictionary name", only CSPRo DB files support sync. Please make sure that the file type is CSPro DB and that it is not closed in CSPro application logic. My file extension is csdb. Fu...
by khurshid.arshad
June 6th, 2017, 12:43 am
Forum: Android
Topic: Help to sync in dropbox!
Replies: 3
Views: 4138

Re: Help to sync in dropbox!

Please use this for function call.

Code: Select all

PROC CAJAS_FF
Preproc
synwithdropbox();
a.
by khurshid.arshad
June 6th, 2017, 12:42 am
Forum: Android
Topic: Help to sync in dropbox!
Replies: 3
Views: 4138

Re: Help to sync in dropbox!

Dear Koyac; Your syntax will be look like this: PROC GLOBAL function synwithdropbox(); if syncconnect(Dropbox) then // get the latest versions of the application files from Dropbox syncfile(GET,"/CAJAS SAGA.pff"); syncfile(GET,"/CAJAS SAGA.pen"); // send the latest cases to Dropb...
by khurshid.arshad
June 4th, 2017, 2:28 pm
Forum: Synchronization
Topic: Synchronization Without “.PNC”
Replies: 7
Views: 7774

Re: Synchronization Without “.PNC”

Dear Team What i have figured out: Function SynDatatoServer(); if syncconnect(Dropbox) then String DateTime=concat (edit("999999",sysdate("DDMMYY")), edit("999999", systime())); syncfile(PUT,"../Work/IND/*.dat",concat("CAPI/Survey/Work/IND/",getdevic...
by khurshid.arshad
June 4th, 2017, 11:34 am
Forum: Synchronization
Topic: problem sync with drop box
Replies: 3
Views: 4485

Re: problem sync with drop box

Dear Yana There is a very good example in Version 7. Please follow these instructions to find example. Click on Example folder under help tab. Click on "1 - Data Entry" and you find folder name "Synchronization In Logic" copy this folder some where else in your system. Explore th...
by khurshid.arshad
June 4th, 2017, 5:38 am
Forum: Synchronization
Topic: Synchronization Without “.PNC”
Replies: 7
Views: 7774

Synchronization Without “.PNC”

Dear Team I am using an example from CSPro 7 for test run and I have found the instructions as follows: “If running on Android, copy the folder Deployment/Synchronization in Logic to the csentry folder on the Android device.” It means we are going to copy manually in all the devices or is there any ...
by khurshid.arshad
June 2nd, 2017, 2:01 am
Forum: Entry
Topic: Writecase issue
Replies: 3
Views: 3632

Re: Writecase issue

Dear htuser

Please try this:

Code: Select all

COD_VICQ=CODEVICQ;   
ID_ITEMS = NUMERO_RAPPORT;
writecase(RAPPORT_EXT_DICT);

a.