Posts by Renata P Souza • 333 points
10 posts
-
0
votes0
answers127
viewsQ: Unable to locate Control ID in Controlparameter - Asp.Net
Hello, I’m having a question getting the id of a book author and adding it to a book creation, and the book to be published should have an auto-incrementing Book ID, a book name and the author ID.…
-
1
votes0
answers468
viewsQ: Document.getElementById does not find element manually inserted in the DOM
Hello, I’m having a hard time getting an element through the id of a Class with document.getElementById(id) of DOM using Javascript and I have a panel style in css #painel { text-align: center;…
-
1
votes1
answer186
viewsQ: transition between main container to a new Javascript container using DOM
Hello, I have a function in Javascript using DOM to create a page and then I intend to view this page on container and for this the visualized data would have to be just the intended and only that…
-
3
votes1
answer533
viewsQ: view HTML element placed on the page using DOM - Javascript
Class Piso and class Consola /** * Classe Piso * contem um numero piso */ function Piso(id) { this.id = id; } /** * Classe Consola * contem uma lista de pisos */ function Consola(nome) { this.nome =…
-
3
votes2
answers997
viewsQ: Possibility to schedule threads in Java to run at different times
I have a system multithreading which is the same as the topic post link - Java Thread Sync (sync collections) in Java that allows scheduling threads to perform at different times. That way, the…
-
0
votes1
answer1243
viewsA: Java Thread Synchronization (synchronize collections)
I’ve been able to make it work as expected, here’s the solution the class Aviao contains only number and 10 passengers public class Aviao implements Comparable<Aviao> { //numero de Aviao…
-
6
votes1
answer1243
viewsQ: Java Thread Synchronization (synchronize collections)
I have defined a Thread in Java where I intend to simulate planes arriving and departing from the airport, the class Aviao contains only number and 10 passengers public class Aviao { //numero de…
-
2
votes1
answer102
viewsQ: the result obtained does not correspond to the actual result
I’m struggling and I don’t even know how to explain, excuse me for the title of doubt, here is the code defined... #include <stdio.h> #include <stdlib.h> #include <string.h>…
casked Renata P Souza 333 -
2
votes1
answer224
viewsQ: Store some elements of a struct array in another struct array
I have defined a struct array struct CAMPO campo[2] in which it will be pointed out by a pointer struct CAMPO *ptr_campo and that pointer will be aimed at the players inserted in the field, here is…
casked Renata P Souza 333 -
4
votes2
answers1491
viewsQ: Store some elements of an array in another array
I have defined a array integer in which it will be pointed by a pointer and then I have another array which will store only a few numbers in which are even numbers, here is the code... void…