Posts by Italo Pessoa • 406 points
9 posts
-
2
votes1
answer134
viewsQ: Default value for Datetime column
I have a table that has the field DataRegistro of the kind Datetime. I am using Entityframework to generate the database (I am not using code first) add the property Computed for the column to be…
-
4
votes1
answer502
viewsQ: Authenticate user efficiently and quickly (without setbacks, Identity x Manual)
I need to create a system amusing using a validation (user, password). I have experience with Webform, I started already studied a little MVC but still don’t feel safe to create a complete…
-
3
votes1
answer190
viewsQ: Function with nameless parameter
Why to declare a function with that signature? void funcao1(Pessoa&); void funcao2(Pessoa&,void*); void XN_CALLBACK_TYPE UserCalibration_CalibrationComplete(xn::SkeletonCapability&…
-
1
votes1
answer743
viewsQ: API for viewing places on the map
I am in need of an API that works like HERE Maps, which enables an easy query through a REST service. With it, for example, I can identify stores within a certain range. But I came across the…
-
2
votes1
answer3034
viewsQ: IIS - Access denied directory
I am using windows server 2008 and IIS 6.1, I have a service that needs to access files in a certain directory, but I do not have access. What I need to configure to get access? After adding…
-
0
votes2
answers703
viewsA: Error reading html page with Html Agility Pack
Once again my theory proves correct. Quando você não consegue encontrar uma solução, é provável que esteja bem na frente do seu nariz. This was the solution, without having to configure the…
-
3
votes2
answers703
viewsQ: Error reading html page with Html Agility Pack
I’m reading an HTML page using Html Agility Pack. I run the code on my laptop and it works perfectly. The problem is when I run it on Windows Phone 7.1. Accented characters (ç) are encoded. And the…
-
7
votes3
answers15498
viewsA: C# dynamic COMBOBOX (SQL BD table data)
You can add the code you use to register a new department within a catch Try, if no error occurs you can add the saved item in the combobox. try { Departamento departamento = new Departamento() { ID…
-
5
votes1
answer216
viewsQ: Yield does not return data
When calling the method, an HTML component enumerable should be returned. I’m using the HTML Agility Pack to read an HTML file. The same method works as expected when removing the yield and add…