All Questions

2
answers

How to change the location icon in the Api Google Maps on Android

How can I change the blue circle icon of the default location in the Google Maps app to an icon made by me in Android? !     
asked on 19.06.2017 / 14:36
2
answers

Problem with app_name texts in different languages

I have the need to find a solution to a problem with the app_name of my android project. The idea is that I should be able to have app_name for both English and Spanish, but only allow me for one. Any way out?     
asked on 13.07.2017 / 07:54
1
answer

The destructor of the class is called after instantiating object with its copy constructor

It is happening to me that when executing the copy constructor of the String class, immediately after instantiating my object, the destructor of the class is called, and it eliminates the newly created object. Why does this happen? How could he...
asked on 22.11.2016 / 13:05
1
answer

Why does this happen with the buttons?

Why does it happen that when you click on the checkbox, you see a box around it? input[type=checkbox] { float: left !important; margin-right: 6px !important; cursor: pointer !important; background: #333!important;...
asked on 12.07.2017 / 07:48
2
answers

Fill form field with the value of another field

Very good. I know that this is a treated topic, but in my particular case I can not solve it. I have a form that sends multiple rows to a database. What I need is that when filling in one of the fields manually, an entire column of the form is f...
asked on 01.08.2017 / 14:21
2
answers

C # - Threads, Timers and something else

I was trying to practice doing a game on the console before going to unity, or rather to boot with unity. Particularly I had problems making the enemies, I came to the conclusion that what controls the enemies is the time and the conditions they...
asked on 31.07.2017 / 03:11
1
answer

highcharts - problems with dates

Good morning. Someone knows why at the time of Highcharts consider this date: [Date.UTC(2016, 06, 6), 14] Like July 6 , when should it be June 6 ? Any way to correct it?     
asked on 07.07.2016 / 04:35
2
answers

DataOutputStream and keyboard reading with Scanner

   The program runs but ends without anything being shown   screen. Does anyone know why? public static void mostrarProductos() { DataInputStream dataInputStream = null; try { dataInputStream = new DataInputStrea...
asked on 23.09.2016 / 10:18
5
answers

C ++ Program to invert a word

This is my code: #include <iostream> #include <cstring> using namespace std; void invertidor (char cadena[], int tamano) { int tamano2=tamano; char invertido[tamano2]; for (int x=0, y=tamano; x<tamano && y...
asked on 19.09.2016 / 16:34
2
answers

Delete URL when reloading

I'm doing a login, everything went perfectly with PHP, only I have a problem. When a user is not found in the database, PHP returns the following: header("Location: ../index.php?error=userNotFound"); This parameter I capture with a GET as f...
asked on 04.08.2016 / 23:48