All Questions

2
answers

How to generate .jar executable program in NetBeans?

I made an application in Java and I liked it, now I need to get executable to show my colleagues. How do I get the executable?     
asked on 07.08.2014 / 21:14
2
answers

Remove "/" from a DateTime.ToShortDateString ();

I'm implementing a program using C # with .NET 3.5 I have the following code: StringBuilder sb = new StringBuilder(); sb.Append(caminhoSalvarCobranca); sb.Append(@"\Boleto "); sb.Append(boleto.Sacado.Nome); sb.Append(boleto.Boleto.DataVenci...
asked on 28.05.2014 / 18:31
3
answers

Making an OCR with no dependencies in PHP

I have a project where people do schedule quotes for Tumblr. Today it works from the Kindle and I'm already seeing the Kobo files. But today I ask for help for the third part: I would like to add an OCR reader , so that the person could uploa...
asked on 20.08.2014 / 19:19
3
answers

How to put my ASP.NET website online

I'm trying to put my ASP.NET application in the air, and I've never had contact with it, do I need to turn my .CSHTML into .HTML? Or something like that?     
asked on 17.10.2014 / 05:07
2
answers

How to insert multiple arrays into a MySQL table

I get via Ajax a $_POST request with 5 indexes and the last 3 are Arrays. It looks something like this: Array ( [c] => [s] => [dt] => [nl] => Array ( [0] => valor1 [...
asked on 07.04.2014 / 02:51
1
answer

Combination of 4 numbers in MySQL

DBMS: MySql Problem: List all the possibilities of combinations between the numbers "1,2,3,4", so that they do not repeat between them. Example: 1 2 3 4 12 13 14 21 23 24 31 32 34 41 42 43...     
asked on 22.04.2014 / 21:02
2
answers

SQL Server 2005 and row versioning

In my current scenario, every Friday, I need to list all rows in a table that have been added or changed. In this table we have a DataDeInclusao field that obviously receives the date of inclusion of that record. My problem is to li...
asked on 16.04.2014 / 16:04
3
answers

GROUP BY last record

I'm doing a query in the database, follow my table below id | protocolo | status | alteracao | datahora 1 2 1 teste 2014-11-10 15:23:44 2 2 3 teste 2014-11-10 14:23:44 3 2 4...
asked on 10.11.2014 / 18:47
3
answers

How to do an ASP NET MVC dropdown

I have a DTO Class [Serializable] public class PerfilDTO { public int Codigo { get; set; } public string Descricao { get; set; } public SituacaoEnum Situacao { get; set; } public List<PerfilFuncionali...
asked on 15.05.2014 / 21:53
3
answers

How to force a download with ajax?

I'm using the PHP DOMPDF class to generate accounts with dynamic filters. The user selects the filters in a form and asks to generate, so far so good. But it will have the option of exporting what it has filtered into PDF. Today, I have th...
asked on 03.05.2014 / 15:29