All Questions

3
answers

How to fix encoding problem in javascript?

I'm running the code below: alert('Não é possível realizar essa operação sem a seleção de uma banca.'); But it's popping up like this:     
asked on 27.02.2014 / 14:42
2
answers

jQuery - how to change text after element "i"?

Follow the code below: <div class="file-caption-name"> <i class="glyphicon glyphicon-file kv-caption-icon"></i> Alterar texto aqui </div> I've tried it this way: $('div.file-caption-name i').text('your new...
asked on 04.10.2017 / 18:11
2
answers

Pass two parameters to a function that accepts only one parameter

I've been making a code to generate a pdf from the framework Itext in Java. I came across the following situation, I needed to define a phrase like negrito and sublinhado . After searching Google, I found a user's su...
asked on 13.09.2014 / 15:20
1
answer

Customize CSRF protection error messages in CodeIgniter

In% with%, if I give a reload F5 on a form's page, the CodeIgniter error is returned. A protection against The action you have requested is not allowed . How do I customize the CSRF of this error message? Instead of...
asked on 26.06.2015 / 04:34
2
answers

Search returns equal data

I'm doing a search system where you have some fields (conditions) to search and find the results. These fields are not mandatory, in case the person type something he will find the data entered, in case the person does not type, the system will...
asked on 15.09.2014 / 11:56
1
answer

Fill in a collection type property

Good evening folks how to populate a collection type property using this type of structure in a class: public class Order { public string orderNumber {get; set; } public DateTime orderDate {get; set; } private D...
asked on 20.06.2015 / 03:46
1
answer

Error in SOAP communication. Lack of tag termination character in XML

It took some time to implement communication with SOAP WebServices in legacy applications written in Delphi 6 . The WebServices that I needed to communicate with these systems were written in Delphi (newer versions with unicode) and C # (asa...
asked on 25.04.2015 / 01:59
4
answers

Why can not I free memory?

I have the following code: #include "iostream" int main(){ int* A = new int[4]; int* B = A; delete[] A; delete B; if(B == NULL) std::cout << "B = NULL" << std::endl; else std::cout <<...
asked on 01.04.2014 / 22:16
2
answers

Failed to connect to MySQL via VBA

I'm trying to connect to a Mysql database via Excel VBA, but it returns an error reporting catastrophic failure. I did a test by entering the wrong password, or the wrong database name, and it informs that access was denied or the database does...
asked on 12.12.2014 / 12:50
1
answer

Development Problem in Unity 5 3D

I'm developing a game using Unity 5 and running (giving play in game), the following error appears and I can not understand it, I think there has to be some denied process, but I do not know what It is. Here's the error: Unhandled Ex...
asked on 21.05.2015 / 09:29