Posts by José Ivan Marciano Junior • 43 points
4 posts
-
0
votes1
answer46
viewsA: File function in C++
Matheus, I tested your code and it worked. Except for this excerpt. int flag=0,lugar=0; I traded for: int flag,lugar; Maybe you are without write or read permission in the root directory…
-
1
votes3
answers268
viewsA: Use HTML in PHP
Really, the code presented has no need to be written in php, can be written in html even: <a href='memberarea.html'><span class="glyphicon glyphicon-lock"></span> Member…
-
1
votes2
answers1608
viewsA: Simulate a Click on Webbrowser using C#
SNOT, you can use the Apis HtmlAgilityPack or even CsQuery, among others, in your project. If you consult in NUGET you will find them. They make it possible to use CSS search to rescue DOM objects.…
-
2
votes1
answer3993
viewsQ: Webbrowser in C# using Chrome
I have a browser application that I created using the class WebBrowser of System.Windows.Forms, this class uses the browser engine IE. Now I need to create a browser application using Chrome. What’s…