All Questions

2
answers

Apply opacity only in the background

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...
asked on 19.11.2014 / 16:29
2
answers

Error executing methods of a cascading class

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...
asked on 30.03.2015 / 12:37
3
answers

How to create search in MySQL that returns unmatched rows?

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....
asked on 24.01.2016 / 05:18
2
answers

How to know the number of lines a large file has in C #?

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...
asked on 13.05.2016 / 19:11
3
answers

Downloadable HTML link coming from the bank

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...
asked on 13.01.2016 / 20:41
2
answers

Customize MessageBox in C #

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...
asked on 04.11.2016 / 17:35
2
answers

What are routes in ASP.NET MVC?

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...
asked on 29.10.2016 / 02:41
2
answers

How to turn HTML into an image on the server?

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...
asked on 26.11.2015 / 18:59
2
answers

How do I remove white space from text?

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...
asked on 07.10.2015 / 14:12
1
answer

Method does not override method from its superclass

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:...
asked on 06.02.2016 / 17:21