Posts by Guilherme Zanetti • 31 points
5 posts
-
2
votes0
answers91
viewsQ: System.Diinotfoundexception: Failed to find library "leptonica-1.80.0.dll" for Platform x86
I am developing an application in Winforms using OCR Tesseract, whenever I run the application on localhost works perfectly, but when I publish or send the folder bin to another computer appears the…
-
0
votes2
answers70
viewsA: How to change style attributes of a . svg?
To filter to a specific color, see an example of this code in Codepen: https://codepen.io/sosuke/pen/Pjoqqp Using the example of him: the exit to #00EE00 is: filter: invert(42%) sepia(93%)…
-
0
votes2
answers25
viewsA: Receiving data from a Table on a php page
I didn’t quite understand the question but, in case you want to insert some data into an AJAX table using jQuery, it would be more or less like this: $(document).ready(function() { EnviaDataTable();…
-
1
votes2
answers112
viewsA: Indentation in html paragraph
User line returns are stored as \n in the database and modified to <br /> for nl2br. \n\n usually means a new paragraph (enter). The white space between paragraphs is CSS and is actually the…
-
0
votes2
answers1008
viewsA: Returning select value with javascript/jquery
With pure Javascript var index = document.getElementById("mySelect").selectedIndex; var value = document.getElementsByTagName("option")[index].value; If you want to return the value of option…