All Questions

4
answers

OrderBy in T lists

I have a list list<Pessoas> : My class people: public class Pessoas { public String Nome { get; set; } public DateTime Nascimento { get; set; } } Theoretically, I could make a OrderBy like this: Pessoas.Order...
asked on 31.03.2015 / 19:13
2
answers

The less you consult the better, right?

It is possible to vary the writing of the results, as an example below where I want to use. <table width="1000" align="center"> <tr> <td>&nbsp;NOTICIAS</td> <td>&nbsp;</td> <t...
asked on 04.04.2015 / 15:02
2
answers

How do I close / close a msgbox via code?

I tried to find out how I could do this, but I did not find anything clear. I want to know if it is possible to close the first msgbox , just after 2 seconds . Follow the Code: MsgBox("Iniciando Conexão Com a Impressora Fiscal", MsgB...
asked on 16.02.2015 / 12:54
2
answers

Add new file to commit

How do I add new files to a commit already done in Git, without creating a new commit? If you've already pushed the remote server, such as "re-committing"?     
asked on 06.03.2015 / 19:36
2
answers

Normalization of tables and Relationships

I'm starting a project from scratch and in the middle of modeling the bank, I had a problem. When I built the models , I could not do it right and I ended up confusing everything. I have student information, occurrences and logins. Where I h...
asked on 27.10.2014 / 04:00
3
answers

Upload only thumbnail videos from Youtube

I have a page that in your layout there are 20 Youtube videos, it's a listing. Since I do not want to make this page really load all these videos to not understand the performance of the site, because iframe weighs a lot. I would like to...
asked on 20.06.2014 / 13:59
3
answers

Error in controller ViewData

What could be wrong with this example? I can not do this: var pessoa = new Pessoa ( PessoaId = 1, Nome = "teste teste", twitter = "@teste" ); Error message:    'Name' does not exis...
asked on 30.09.2014 / 16:48
3
answers

Differences between Padding and Margin

What's the difference between using Padding and Margin in an Android view? When should I know which one to use?     
asked on 22.08.2014 / 00:31
3
answers

How to include in the regression a variable raised to n

Suppose I have the following data x<-rnorm(100,1,10000) y<-rnorm(100,1,10000)+2*x+x^2 If I use the lm function as follows: model1<-lm(y~x+x^2) The R does not understand that it is to put between the independent variables the t...
asked on 18.02.2014 / 12:53
2
answers

Only display month and year in primefaces calendar

As remover os dias of the primefaces ? / p> I tried the configuration below, but the days are displayed when the component is re-weighted. <p:calendar id="dataTeste" pattern="MM/yyyy" /> Here is the rendered component image:...
asked on 17.04.2014 / 17:12