Posts by thatsadkatyperrymeme • 16 points
5 posts
-
-1
votes1
answer50
viewsA: When saving PDF file spaces are replaced by "%20" (without quotation marks)
Try putting another double quote like this: var NovoDocumento = "C:/Users/Bird/Desktop/PTD´S/"" + tbNomeProf.Text + " - "" + tbMateria.Text + ".pdf"; source:…
c#answered thatsadkatyperrymeme 16 -
-1
votes2
answers4597
viewsA: Include menu in all pages
You can do this with Jquery, example: <html> <head> <title>Include Common Files</title> <script src="//code.jquery.com/jquery-1.10.2.js"></script> </head>…
-
0
votes1
answer373
viewsA: How do I make this script work on my blogger
I believe you should insert at the end of the HTML code a script tag, with the javascript code inside, e.g.: <script> var button = document.querySelector(".b1"); var button2 =…
-
0
votes1
answer538
viewsQ: View Java Database Values
I’m a beginner in Java and I’m making a mini RPG-style program for Database Testing, and I want to display the data contained in the BD using a ArrayList, but the result of the exhibition is always…
-
0
votes1
answer623
viewsQ: Add values from an array
I’m trying to make this code, which is basically a six-by-six two-dimensional array with the distance between six cities, then collect the route that the user did in a simple array [6], and…