Search found 2399 matches

by josh
April 26th, 2017, 1:12 pm
Forum: Entry
Topic: function who return the length of an numeric item from the dictionnary
Replies: 6
Views: 5481

Re: function who return the length of an numeric item from the dictionnary

Do you need the max length allowed for the dictionary variable or the length in digits of the number of the current value?
by josh
April 21st, 2017, 6:32 am
Forum: Entry
Topic: flashing screen in one record
Replies: 4
Views: 4552

Re: flashing screen in one record

Can you post the application? Use the pack application tool to create a zip file and post it here.
by josh
April 20th, 2017, 8:15 pm
Forum: Entry
Topic: flashing screen in one record
Replies: 4
Views: 4552

Re: flashing screen in one record

Most of the CSPro developers are using Windows 10 and we haven't seen that behavior. Perhaps you could post the video on Google Drive, Dropbox or YouTube so we could see it.
by josh
April 20th, 2017, 8:14 pm
Forum: Entry
Topic: correspondence
Replies: 2
Views: 3285

Re: correspondence

If the list of names and codes is small you can simply use a set of if statements: if NAME= "Josh" then CODE= 1 ; elseif NAME= "Show87" then CODE= 2 ; elseif NAME= etc... If the list of names is long you can use a lookup file. Create an Excel spreadsheet with the names in one col...
by josh
April 20th, 2017, 8:04 pm
Forum: Entry
Topic: Ediring
Replies: 1
Views: 2186

Re: Ediring

The idx file (index file) is only needed to make lookups fast. You should never need to edit it. You can simply delete it and open the data file in CSEntry and the index file will be recreated. To edit data files you can either edit manually by opening the file in CSEntry or do automated (programmat...
by josh
April 19th, 2017, 6:09 pm
Forum: Synchronization
Topic: CSPro7 Failed to connect
Replies: 6
Views: 6636

Re: CSPro7 Failed to connect

You should be able to set the proxy configuration at the system level (in network settings). There are no settings for it in CSPro.
by josh
April 18th, 2017, 3:16 pm
Forum: Android
Topic: Sync server error
Replies: 9
Views: 8106

Re: Sync server error

Localhost will only work on your phone if you are running the webserver on your phone. Localhost means that you want to connect to a web server on the local machine (https://en.wikipedia.org/wiki/Localhost). If you are running the server on a PC on the local network you will need to use the IP addre...
by josh
April 18th, 2017, 5:35 am
Forum: Entry
Topic: skip and ask if
Replies: 2
Views: 3332

Re: skip and ask if

Ask if is a convenient way to skip a field. You could accomplish the same thing with a skip but in many situations ask if is easier to use and makes the code easier to understand. We have found that often the way a questionnaire specification is written is to provide a positive condition - ask the q...
by josh
April 18th, 2017, 5:28 am
Forum: Entry
Topic: Type Value on Dictionary
Replies: 1
Views: 2993

Re: Type Value on Dictionary

The type value is how CSPro can tell one record from another in the data file. If the value type is blank then CSPro won't be able to tell which record is which type. This is explained pretty well in the help if you search for "Record type". By default the length of the type value is 1 dig...
by josh
April 14th, 2017, 10:38 am
Forum: Android
Topic: What's new in CSpro 7
Replies: 1
Views: 2425

Re: What's new in CSpro 7

Look in the online help for CSPro 7 under sync and also at the synchronization from logic example in the CSPro 77 examples directory.