Posts by Henrique • 18 points
3 posts
-
0
votes1
answer28
viewsQ: Compiling file . il (Intermediate Language) with admin permission
I’ve been doing a lot of research on how to insert certain parameters into an already created executable. And I arrived in that post of the Stack But the program initially has administrator…
-
0
votes1
answer206
viewsA: Taking ids from an HTML and playing for a Javascript array
You said you wanted to put the ids in the array, so here goes function mostrar(){ var todasTags = []; var ids = document.body.getElementsByTagName('input');//pegando todas as tags input for (var i =…
-
0
votes1
answer80
viewsQ: Populate vector and check if current position value is equal to previous
btnInnerText(btns[0],sorteio()); var bool = true; for(var i=1;i<btns.length;i++){ do{ btnInnerText(btns[i],sorteio()); for(var j=0;j<btns.length;j++){ if(getValorBTN(i)==getValorBTN(j))…