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...
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...
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?
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
[...
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...
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...
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...
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...
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...