I have a div and text written inside it.
.topoMenuSegmentos {
width: 470px;
height: 190px;
background-color: #0a1737;
display: block;
margin-top: -2px;
}
I want to apply a opacity:0.8 , what happens is that the text inside that div al...
I have the following code:
1. $customer = new Customer($apiContext);
2. $customer->setVat('XYZ0123456')
3. ->setName('Filipe')
4. ->setLanguageId(1);
5. (...)
The following error occurs on line 3:
Call...
I'd like to know how I can do a search that returns records that are not part of the search condition.
For example, consider the situation where there is a database of a movie store with the cliente table and the aluguel table....
Well, I'm starting now in C #, but I already have a great experience with PHP and I know more or less Python .
And the means I use to understand is to do something that I found difficult to do in a language I know in a language I do not...
I'm writing an address in the database and with ajax I'm looking for it to display to the user. Temporarily, I'm writing it to the input below:
<tr>
<td>Download:</td>
<td><i...
I have the following MessageBox
MessageBox.Show("Deseja iniciar a forma automática?", "Atenção",
MessageBoxButtons.YesNo, MessageBoxIcon.Question)
Can I customize it?
Instead of being the YesNo buttons, put...
In ASP.NET MVC I always get the term route when #, however, I started to study APS.NET MVC a short time ago and this term route / strong> this is causing me confusion.
Question
I would like to know what are routes and what is their p...
I have a Asp.Net MVC project with .Net Framework 4 in Visual Studio, where I need to transform a string with HTML code into a server-side image .
I've tried using this library , but I'm open to new options.
The code looks like this:
Im...
I was trying to get whitespace from a string , but .Trim() does not work, this still displays whitespaces:
var teste = texto.Trim();
txtConteudo.Text = teste;
For example, if it receives: "text text", it continues: "text text" eve...
I'm new to Java and I'm learning app for Android and on my route, I ran into this error:
Method does not override method from its superclass
The word @Override is underlined in red, but I could not understand the error. Here is the code:...