Posts by Ezequiel da Silva Daniel • 99 points
8 posts
-
1
votes2
answers404
viewsA: Publication of ASP.NET MVC Project
Hello, Good first you have to have a provider to host your project and that will redirect to your domain "www.meusite.com.br". If you do not opt for Azure and hire any other hosting provider, the…
-
0
votes2
answers963
viewsA: I cannot apply Encoder to the text to correctly display "ç, accents, other special characters"
To get around the difficulty I took the characters that were coming and replaced them by the equivalent characters : sOutput = sOutput.Replace('?', 'ç').Replace('Æ', 'ã').Replace('¢',…
-
0
votes2
answers963
viewsQ: I cannot apply Encoder to the text to correctly display "ç, accents, other special characters"
Hello, I need to gather some information from the station, and I’m getting it. However in the received text I cannot apply an Encoder to correctly display the special characters: I have tried using…
-
1
votes1
answer327
viewsA: How to compare two dates in Datagridview and change color when VB.Net expires
Must be something like: For Each linha As DataGridViewRow In DataGridView_consulta.Rows valor_celula = linha.Cells(2).Value If valor_celula = "Aberto" Then linha.Cells(2).Style.BackColor = Color.Red…
-
-1
votes3
answers109
viewsA: How to test Entity Framework performance?
Use Analyze from Visual Studio, with it you will be able to know where it is taking the most time in your application, we have already solved some performance problems using it. You go to Analyze in…
-
1
votes2
answers2252
viewsA: Selecting a value from a Listview row/column populated by LINQ to SQL
You have to take the column of the selected row: DataRowView linha; int linhaIndex; linhaIndex= listView_tabProduto.SelectedIndex; linha= listView_tabProduto.Items.GetItemAt(linhaIndex) as…
-
1
votes1
answer251
viewsA: How to pass listview items to text
This can help, explains how to fill and search for item, just grab the part of the loop: http://www.macoratti.net/13/09/vbn_pilv1.htm create a stringbuilder, create three more string-like variables…
-
3
votes2
answers107
viewsA: Update serial ID when a table is NULL
This is the expected behavior of a DB auto increment field, it does not make much sense to search for a deleted ID and force the DB to add this ID in the new registration, you will lose a lot of…