Search found 595 matches

by AriSilva
March 25th, 2020, 7:06 pm
Forum: Other
Topic: Join notes with cases
Replies: 2
Views: 2383

Re: Join notes with cases

Yeah, I figured that out. I had already worked withe the questionnaire column as a whole to get the data, when I had a problem with loosing data because of a carriage return.
But I thought that you might have something under the table.
In any case, that is not an emergency, I´ll wait for the 7.4.
by AriSilva
March 25th, 2020, 6:58 pm
Forum: Other
Topic: Notes and its fields in sql
Replies: 4
Views: 2803

Re: Notes and its fields in sql

Thanks, Greg, it worked, both the operator_id and the modified_time. But I could not set the operatorId using the setoperatorid() function. I used it at the _FF form preproc, but the operatorID was always blank. ... PROC BRUMA_10_ENTREVISTA_FF preproc string x = "something"; setoperatorid(...
by AriSilva
March 25th, 2020, 6:49 pm
Forum: Android
Topic: pff.save
Replies: 1
Views: 1757

pff.save

I´m using the pff object to write a pff and then execute it. Everything was working fine until I tried to save the object to be able to have a look at it, and then the pff did not execute anymore, issuing an error in the name of the ent file. In fact, the saved pff file was wrong, both the Applicati...
by AriSilva
March 25th, 2020, 12:10 pm
Forum: Android
Topic: ShowNavigationControls
Replies: 2
Views: 2065

ShowNavigationControls

I was playing with the savesetting, specifically the savesetting("CSEntry.Setting.ShowNavigationControls", "Yes/No"); I turned if off with savesetting("CSEntry.Setting.ShowNavigationControls", "No"); It worked, the menu item disappeared (not visible). But when...
by AriSilva
March 25th, 2020, 10:59 am
Forum: Feature Requests
Topic: Trapping the left arrow key
Replies: 5
Views: 3689

Re: Trapping the left arrow key

Sorry, but no cigar. It did not work, but not because of your technique. The problem of applying it, in our case, is that we do not have several forms, one for each part of the questionnaire. We decided (maybe it was a bad decision) to have a single form with several "virtual" sub-forms. E...
by AriSilva
March 25th, 2020, 10:04 am
Forum: Feature Requests
Topic: Trapping the left arrow key
Replies: 5
Views: 3689

Re: Trapping the left arrow key

Thanks Greg for the tip, I´ll try that. I´m not worried about the case tree because we disconnected this option in the menu using the savesetting. savesetting("CSEntry.Menu.ShowCaseTree", "No"); We are trying, as much as possible, for the enumerator not having much flexibility in...
by AriSilva
March 24th, 2020, 12:36 pm
Forum: Other
Topic: Notes and its fields in sql
Replies: 4
Views: 2803

Notes and its fields in sql

Using the dataviewer to look at a questionnaire I noticed that, at the end, it shows the notes fields, as the interviewers filled them. That´s very good! I can see also that the fields having notes are marked in yellow and if you move the cursor over it you can see the notes´contents, which is also ...
by AriSilva
March 23rd, 2020, 4:32 pm
Forum: Other
Topic: Join notes with cases
Replies: 2
Views: 2383

Join notes with cases

I´m not an expert in SQL (very very far from that). I was trying to read the notes attached to the variables, and finally I got it! And it worked, writing the noes contents to the WS and then to a csv file. My query was numeric ret = sqlquery(BRUMA_10_ENTREVISTA_DICT, entrySessions, "select cas...
by AriSilva
March 23rd, 2020, 4:21 pm
Forum: Feature Requests
Topic: Trapping the left arrow key
Replies: 5
Views: 3689

Re: Trapping the left arrow key

The way we are programming, there are some situations where the left arrow key should not be accepted. For example, we do not want to allow the user to step back to a previous form, so the idea would be when this function onbackwards is executed, that is, the user pressed the left arrow, the functio...
by AriSilva
March 11th, 2020, 8:57 am
Forum: Entry
Topic: protected field versus using noinput
Replies: 9
Views: 5109

Re: protected field versus using noinput

The idea of having a dummy variable with noinput at the beginning of each form is to standarize the jumpings from one form to the next: you always skip to this dummy variable, you do not have to think which is the first variable in the form, and if you do change the variables in the form for whateve...