All Questions

2
answers

Asynchronous javascript calls and asynchronous task .net

In my work a colleague made a statement, he said that it did not make sense to do an asynchronous method in c # if in ajax . What would be the advantage of having an asynchronous call in
asked on 20.07.2016 / 16:05
1
answer

Start XAMPP server from CMD

Is there a way to start / stop XAMPP (Apache server and mySql) using the terminal in Windows 10? PS: The path where the program is is the one created by default when installing it     
asked on 17.11.2017 / 21:30
2
answers

Problem with accents in Regex

I am using the website link . Using the phrase as a regular expression: (?i)purificación And as a text PURIFICACIÓN To my surprise they do not machean, I thought that the case insensitive (i) modifier would solve this, but it does n...
asked on 10.08.2016 / 09:35
1
answer

Problem with while loop: does not work or

The or does not work in this while loop: #include <iostream> using namespace std; main () { char s; do{ cout<<"\n\t\t> Ingrese el sexo: "; cin>>s; }while (s!='f' || s!='m'); return 0; }    ...
asked on 23.08.2016 / 16:20
2
answers

Format 001-000001 in a textbox (editbox)

I want to enter data into a text box the app is windows forms, what I want to enter is in this format 001-000001 the first two digits are zero the third digit of 1 to 9 the fourth digit a - of the fifth digit to the t...
asked on 27.07.2016 / 01:13
3
answers

Search for repeated values in multidimensional array (PHP)

How can I get the repeated values inside a multidimensional array in PHP? I have found some functions but they have not worked for me. Is there a native function that does that? <?php $array = array(array(7,18), array(12,7), array(12, 7, 13...
asked on 09.08.2016 / 07:12
2
answers

Search in a range of ip's, PostgreSQL

I'm doing a query to get ip addresses given a range, for example: Obtain the ip's that are between 192.168.0.0 and 192.168.0.255 The query I'm using is: SELECT dir_ip FROM nic WHERE dir_ip BETWEEN '192.168.0.0' AND '192.168.0.255' ORDER...
asked on 03.08.2016 / 20:27
4
answers

How to manipulate svg with css?

I'm trying to manipulate svg images with css and I have not really had the slightest success, I guess it's some detail I'm not doing since on the internet there are many examples of this that I'm trying and I guess it's because it works for them...
asked on 22.08.2016 / 19:10
2
answers

AJAX - Load values of .php in a select - Provinces

I have to load the provinces, they are in an .sql file that I load in the phpmyadmin, in a select within a formulario . The form has a select are the following information: <tr> <td align=right>Provincia:...
asked on 05.06.2017 / 13:41
2
answers

Pass boolean value between custom forms - Windows Form

I am developing a Windows Form type solution that contains two forms: Form frm_open_window : Fields: (1) Button "Open": Open the form called frm_nueva_ventana . When this button is pressed, it must be locked. Example: Abrir.E...
asked on 18.08.2016 / 23:03