All Questions

1
answer

Launch Windows Service automatically

I created% test%, I was searching and I saw that to start it automatically it is necessary to change the Windows Service property of the% object StartType to Automatic , that the service, after already started automatically. Howev...
asked on 15.12.2015 / 13:32
2
answers

Tomcat only reads Log4J.properties when rebooted

Until recently I made changes to the log4j.properties ex file: change the level of the TestMB class) and just do the redeploy the application. Now, the changes only take effect when I restart Tomcat. What will happen? Log4j.properties...
asked on 20.01.2014 / 14:46
1
answer

Period-based filtering on data type inputs

I have a system where I have a <input type="date"> and I need to filter it, to bring in the calendar only the dates of 3 months ago and the current month I was using the attributes min and max to test, since they ar...
asked on 09.01.2014 / 14:39
1
answer

Laravel + Android

I am starting my studies in the laravel framework and I have seen that it is very useful to create websites, however, is it possible for me to consume these routes in native android? Because the routes are usually linked to views and not to the...
asked on 03.11.2018 / 17:28
3
answers

Disable input text when clicking on another input text

Good afternoon, I have the two inputs below: <input type="text" id="txtEntrada" name="entrada" onkeyup="somenteNumeros(this);" > <input type="text" id="txtSaida" name="saida" onkeyup="somenteNumeros(this);"> I would like...
asked on 02.12.2015 / 19:24
2
answers

How to give a FadeIn only in the Clicked Item

I'm trying to do the following: I have a looping coming from the database. When I click on a button on one of the results, I wanted to make a div appear in fadeIn. It turns out that when I click on one, the div appears in all. How do I click...
asked on 04.02.2014 / 14:22
1
answer

Accept only one comma in Textbox c # WPF

Hello, I'm using my decimal Textbox like this: <TextBox x:Name="TextBox" KeyDown="TextBox_KeyDown" Style="{StaticResource MeuTextBoxValor}" Height="23" Margin="1" Text="{Binding Peso, NotifyOnValidationError=tru...
asked on 13.12.2018 / 13:45
1
answer

open a view in new tab

I have a view with a graph, but I do not want it to open inside my template and yes in a new aba . $this->loadGrafico('graficoEscola', $grafico);     
asked on 14.10.2018 / 14:15
1
answer

Map the same entity twice

I'm trying to map the same entity twice in another public class Conveniado { public int Id { get; set; } public string Nome { get; set; } [InverseProperty(nameof(ProcedimentoAgregado.ConveniadoDe))] public virtual ICollection...
asked on 29.09.2018 / 01:14
2
answers

What is the difference between the string.slice () method and the string.substring () method?

We know that the string.slice() method and the string.substring() method allow you to extract a part of a string and create a new string as a result (without modifying the original string). What differentiates one method from the o...
asked on 19.11.2018 / 22:55