Posts by Vinicius Roberto • 43 points
3 posts
-
0
votes4
answers654
viewsA: Pass parameters in JS functions
Try something like: var vetor = []; for (j = 0; j < info.length; j++) { var div_faceta = document.createElement('div'); div_faceta.className = "divFacetas"; div_faceta.id = 'faceta' + j +…
javascriptanswered Vinicius Roberto 43 -
3
votes1
answer4024
viewsQ: Print PDF file using Printdocument
I am developing an application, Console Application in Visual Studio 2015, that its function is to print documents. I can print TXT and DOC without problems using the class PrintDocument but I can’t…
-
0
votes1
answer82
viewsQ: Download a pdf from a web application to a desktop application, in C#
I have to do a job for the college using C#, with Visual Studio, where a user accesses a web application, uploads a file, and sends it to a remote desktop machine and saves it in a specific folder.…