All Questions

1
answer

Problem debugging a thread when there are several assets Visual Studio 2015

I have a program that reaches a point and launches a task where a series of actions are executed, while those actions I am in a loop checking until that task ends or a certain date is reached. What I want is to purge only what happens in that ta...
asked on 19.07.2017 / 15:12
2
answers

Problem adding millions to a table replace jquery

Currently I take all the values of the second column sums and I remove the "$" and ".", only works when they are 6-digit numbers by placing 7-digit numbers in the table the sum is wrong, What can be done? in my opinion I am doing wrong replace t...
asked on 14.07.2017 / 20:13
1
answer

How to change the language of all asp.net mvc error messages from English to Spanish?

Changing the user registration form that asp.net mvc5 brings by default, I noticed that the error messages that it sent came in English: These errors are shown in the Validation Summary ( ValidationSummary ) When searching online for the o...
asked on 15.07.2017 / 16:59
4
answers

Validate a select field

Update of the question. I need to validate a Select with jquery.validate and bootstrap before registering, otherwise I send the alert. I have the house table and the bet table, in the selected form it is the id of the house table to know the nam...
asked on 18.07.2017 / 18:27
2
answers

Notice: Undefined index: id

I have a form with php and html , in which, I want to modify my Database. I'm just confused with this error message. Form <?php require('../admin/conexion.php'); $id=$_GET['id']; $query="SELECT empres...
asked on 05.09.2017 / 15:55
2
answers

Get several values in a query

I have this code: cursor.execute('SELECT nom FROM productes WHERE listacompra = 1') rows = cursor.fetchall() for row in rows: print(row[0]) In the SQL database, I have two rows with something like this: id 1, nom Custard, list purc...
asked on 06.09.2017 / 17:42
2
answers

Problem with array

I have a very simple and strange problem in an array in which I declare it for example: $scope.pactUpdates = []; The problem is when I push on that array and I want to assign the value of a control that is empty. $scope.pactUpdates.push({...
asked on 12.07.2017 / 16:02
2
answers

url is not registered http //schemas.android.com/apk/res/android

I started working with recyclerview and cardview and then I had to put a dependency and when it was synchronized the build sent me this error, I already deleted the activitys and classes that I used, I also deleted the dependencies that I did no...
asked on 10.09.2017 / 21:08
3
answers

How do I get a number with 1 decimal without rounding in javascript?

I have a problem with decimals, since I'm getting a number for example 2.7607 and I'm taking out 1 decimal with the function toFixed (1) but it returns 2.8 since it rounds it but I need 2.7 only. Someone who can help me please. Thanks !!...
asked on 08.09.2017 / 13:23
1
answer

How to modify the value of a global variable from Alamofire

For example, I need to change the value of the variable existUser which by default is initialized as false to true but when the variable is finished it being in false and only the value true is kept within the response of Alamofire i...
asked on 14.07.2017 / 15:43