Posts by mqueirozcorreia • 1,231 points
6 posts
-
52
votes3
answers38239
viewsA: How to change the language of Visual Studio 2017?
The installation of Visual Studio 2017 has several languages besides English and by default installs the operating system language. If you need to install a different language, you must: 1) open the…
-
28
votes3
answers38239
viewsQ: How to change the language of Visual Studio 2017?
If you follow the step by step installation of Visual Studio 2017, it installs the operating system language. How to change language to English?
-
9
votes2
answers424
viewsA: Deserialize Json in which the key is a number
First, for json to be valid I had to make some adjustments to stay as below: { "c":[ { "1":23200083, "2":"string aleatória", "3":0, "4":19, "5":0, "7":9, "8":0, "9":0, "10":0, "11":33, "12":0,…
-
4
votes1
answer4347
viewsA: Manipulate page with Webbrowser
The method WebBrowser.Navigate load the page in an asynchronous way, in order for you to manipulate the document you should expect the document to have been loaded. You can do it two ways:…
-
1
votes5
answers554
viewsA: Error passing URL as parameter... Joeblogs & Htmlagilitypack
You are loading the html in this row below, to simulate the problem, you would need the contents of the variable "website". HtmlDocument resultat = web.Load(website); Anyway, it seems that the xpath…
-
1
votes1
answer418
viewsA: Asp.NET webservice with blank page on IIS 8
You may need to disable custom error pages to see the error. I made this post that can help: http://aplicacoesweb.blogspot.com.br/2013/11/iis7-abre-pagina-aspnet-em-branco.html…