Posts by Paulo Lima • 321 points
7 posts
-
1
votes2
answers282
viewsA: Error while trying to connect to database
I believe your probleam is the Named Pipes and TCP/IP Connections disabled, follow a link with details to enable them…
-
0
votes2
answers1994
viewsA: Get Post Data in ASP.Net MVC
Just create an object(template) containing the properties with the same view name, as in your example this object will have a property called checkedCli
-
1
votes2
answers241
viewsA: How to repurpose code in two similar projects
just take what is common to both and turn into a library, and then use the reference in both
androidanswered Paulo Lima 321 -
16
votes5
answers2194
viewsA: Exceptions consume a lot of processing. Truth or legend?
Jon Skeet wrote "Exceptions and Performance in . NET" (Jan. 2006), updated on "Redux exceptions and performance" (thanks @ Gulzar). Rico Mariani entered the conversation with The True Cost of . NET…
-
1
votes3
answers1069
viewsA: jQuery multiline highcharts
would not be "date" instead of "y" name: val.key, data: val.Value
-
1
votes2
answers167
viewsA: Error in calculation of execution
You are not resetting the Stopwatch just stopping and starting again and the last time will get the sum of all the others. Ex: the second will take the sum of the first and his own time
-
2
votes4
answers51666
viewsA: Responsive font-size depending on screen size
Just use CSS and it solves this way: @media only screen and (min-width : 1550px) { css para este tamanho } @media only screen and (min-width : 1400px) and (max-width : 1549px) { css para este…