Search found 68 matches

by Enkhbayar
September 6th, 2019, 7:32 am
Forum: Entry
Topic: New released cspro version 7.3
Replies: 11
Views: 7071

Re: New released cspro version 7.3

Hi Josh,

is there any function to get CSPro version from the logic?
by Enkhbayar
July 23rd, 2019, 5:44 am
Forum: Entry
Topic: Data deleted without notice on tablets
Replies: 8
Views: 7126

Re: Data deleted without notice on tablets

We had same problem, but it solved when we shifted from 7.1 to 7.2

I guess, v7.1 has a bug.
by Enkhbayar
September 18th, 2018, 9:34 am
Forum: Editing
Topic: Calling Multiple batch pff
Replies: 3
Views: 3637

Re: Calling Multiple batch pff

Or you can create an MSDOS batch application as below RUN_BATCH.bat ======================================================================== start H:\SAS_APP\Center_Office_app\DownloadData-PLOTQUESTIONNAIRE_8ICT.pff TIMEOUT 180 start H:\SAS_APP\Center_Office_app\plot_correction\plot_correction.pff T...
by Enkhbayar
August 7th, 2018, 4:32 am
Forum: Synchronization
Topic: Synchronization in dropbox(maximum users)Version 7.1.0
Replies: 5
Views: 4254

Re: Synchronization in dropbox(maximum users)Version 7.1.0

around 1000 devices worked smoothly when they use the same Dropbox account.
by Enkhbayar
August 2nd, 2018, 9:04 am
Forum: Tools
Topic: Convert csdb to dat/csnot automatically.
Replies: 1
Views: 2845

Convert csdb to dat/csnot automatically.

Is there any way to convert csdb to dat/csnot automatically (in batch). we captured OTHER value using editnote, so I need to merge note files to the main dataset everyday.
by Enkhbayar
May 21st, 2018, 10:49 am
Forum: Android
Topic: Deleting or encrypting cases on tablets?
Replies: 4
Views: 3852

Re: Deleting or encrypting cases on tablets?

You can add some logic in enumerator menu app. In my opinion, you can solve the problem something like below. while loadcase(YOURDATAFILE)=1 do string assignmentUniverse = edit("99",ID); syncResult=syncdata(PUT,YOURDATAFILE, assignmentUniverse); //Sync only new cases. enddo; syncdisconnect...
by Enkhbayar
May 21st, 2018, 9:57 am
Forum: Entry
Topic: filewrite as report from a Roster
Replies: 3
Views: 3516

Re: filewrite as report from a Roster

you can call the function called "open()" after setfile(). setfile(reportFile, tempDirectory + "All Listed Cluster.txt"); OPEN(reportFile); Open( LISTING_DICT ); Not related to your question, but I think it's better to move your report title to out of the loop. like below filewr...
by Enkhbayar
February 5th, 2018, 4:01 am
Forum: Entry
Topic: what is the propose of the .csidx-journal
Replies: 1
Views: 2601

what is the propose of the .csidx-journal

just curious, what is the propose of the *.csidx-journal in v7.1?
by Enkhbayar
January 11th, 2018, 3:06 am
Forum: News
Topic: release date of 7.1?
Replies: 2
Views: 4971

release date of 7.1?

when 7.1 is going to be released?
by Enkhbayar
January 3rd, 2018, 3:39 am
Forum: Android
Topic: log file not generated in the tablet
Replies: 6
Views: 5540

Re: log file not generated in the tablet

I recorded logs to *.CLOG file using the function below. Then you have to develop a dictionary and the batch app to export log in csv. // f_status = 1 means open the app, 2 means closing the app. when you start the app, call this function with parameter 1, and call again with parameter 2 when you cl...