All Questions

2
answers

Get the largest data from different fields - SQL

I have a table with 'STOCK_TIENDA1'-' STOCK_TIENDA2 'AND' STOCK_TIENDA3 ', I need to take the stock of the store that has the most value and pass it to a new variable 'SHOP_MAYOR' would be something like this: I thought of something lik...
asked on 28.06.2018 / 19:35
1
answer

How do lists work in c #?

I was wondering if someone could guide me or tell me what the concept is called in order to learn it and / or apply it on my own. Sometimes, using Api's I have found that some method returns a list, for example in this case. var ListaDevue...
asked on 12.10.2018 / 13:51
2
answers

IF Alternative C #

I would like to know an alternative to avoid the excessive use of IF within this code if (paq.Lunes) this.lu.Attributes.Add("class", "select"); if (paq.Martes) this.ma.Attributes.Add("class", "select"); if (paq.Miercoles) this.mi.A...
asked on 08.10.2018 / 00:57
1
answer

Open modal with Jquery with double click

I want to open a form that is inside a modal, that's how I open it with a click: $("#ModalEventos").modal(); But I need you to open it with a double click.     
asked on 10.10.2018 / 13:31
3
answers

How to make a bootstrap Collapse in html tables?

I would like to get this effect toggle bootstrap in a table, that is to say: get that effect of displacement up, but all I get is that it appears and disappears with a horrible effect. I leave you a bit of code: $(function ()...
asked on 05.10.2018 / 17:27
1
answer

Error trying to install "ngx-input-file" in Angular 6

I try to install the library ngx-input-file . npm install ngx-input-file --save I import the 2 libraries to app.module.ts like this: import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { InputFil...
asked on 06.10.2018 / 16:30
5
answers

Display of results in java

I made a program that allows me to enter any number with a limit that the user establishes, and so display the odd and even ones, but when I do, I have a comma on the right. Even numbers are: 2, 4, Odd numbers are: 3, 5, How can I...
asked on 18.10.2018 / 04:46
2
answers

Convert string to object or array in PHP

This string returns it when you send the data to a provider: string(474) " { "status":"success", "Data": { "RazonSocial":"Ferreteria Perez", "RFC":"XAXX010101006", "Calle":"Av.Juarez", "Numer...
asked on 11.10.2018 / 05:11
4
answers

Minimum value of a list

I'm putting together a list lista.append(['{}{}'.format('Metros: ', metros),nombre,direccion]) and the output is: [['Metros: 405', 'edificio A', 'San Lorenzo'], ['Metros: 1843', 'edificio B', 'Eusebio Blanco'], ['Metros: 3067', 'edificio...
asked on 10.04.2018 / 15:07
4
answers

Go through 2 lists in java

List<String> DiasSemana = new ArrayList<>(); DiasSemana.add("Lunes"); DiasSemana.add("Martes"); DiasSemana.add("Miércoles"); DiasSemana.add("Jueves"); DiasSemana.add("Viernes"); DiasSemana.add("Sábado");...
asked on 20.04.2018 / 02:35