All Questions

1
answer

copy data from a csv to an excel using vba

I want to copy data that I have in a csv to an excel using vba. I have the code that does it, but I do not want to copy the first row of the csv and I do not know how to do it. This is my csv: And this is my vba code of an excel: Priv...
asked on 24.04.2017 / 08:25
2
answers

What is the difference between "new Array () / new Object ()" and "[] / {}" respectively?

In javascript there are two ways to create arrays and objects , they can be created using literal objects: new Array() - Object - arrangement new Object() - Object - object or they can be created from their primitive...
asked on 10.05.2017 / 15:04
1
answer

Variable arrangement in C

I have made a code in which I indicate the amount of values that my arrangement will have, it introduces them well but then it does not visualize anything to me. I do not know where the fault is, I think I'm giving back something wrong. Code:...
asked on 28.08.2017 / 18:30
1
answer

How to transpile files ES6 to ES5 with Babel?

I'm trying to follow a series of examples to learn ES6, but I can not get it to transpile correctly. In my case I use the following line to do it babel --watch index.js --out-file index_ES5.js My file .eslintrc has the following c...
asked on 26.08.2017 / 18:48
1
answer

Put Android on standby by program

I want the application to pass the device to standby as when pressing the on / off key, but I can not find how to do it.     
asked on 03.05.2017 / 18:37
1
answer

Socket.io google maps

I am building a small system, to see the location of a user in real time with google maps. I have a backend echo in node.js (socket.io). A frontend where I see a google map and the scoreboard in real time. and an app which sends the data to t...
asked on 17.05.2017 / 14:04
1
answer

Driver laravel does not update

I have a problem when I try to update the information, when I press the btn to edit the information, I load a view with the text fields that get information from the table, but when I edit them and try to submit, the request errors, for example...
asked on 19.04.2017 / 08:15
2
answers

Export images from html to word

Starting with my previous question , I would like to know how I can export an image of html to Word, or at least know if it is possible or not. I have the following table: <table id="test" class="table table-striped table-custom table-...
asked on 26.04.2017 / 13:05
2
answers

Error in conditional

Hello, I need to create a queue using vectors in Java and I do not understand why the condition does not work when my vector is full. import java.util.Vector; public class ColaVector { private Vector<Integer> cola = new Vector<In...
asked on 04.05.2017 / 23:11
1
answer

Remove white background ProgressDialog custom android studio

I'm customizing a progressDialog in android studio. But when executing a white background is shown as the image shows Use the following to modify the ProgressDialog: progressDialog = new ProgressDialog(context); progressDialog.sh...
asked on 28.04.2017 / 20:46