Posts by H C • 45 points
10 posts
-
0
votes0
answers229
viewsQ: api google images
Community, I’m having problems using the google search api (images), where it does not return me the possible results, for example, I do a search related to the car and it returns me images that are…
-
0
votes1
answer91
viewsA: FXML Loader error
Change anchor.getChildren().setAll(g); for anchor.getChildren().add(g);
-
0
votes1
answer63
viewsA: Error changing label - Javafx
Try using the MVC standard, where you separate your view from the controller. From what I’ve seen, you’re using a controller to start the application, which you don’t. you must use a Main (extends…
-
0
votes1
answer164
viewsA: Javafx textfield settext does not work
Good as you did not give more details of your code, I imagine you want when you click the change button to open a screen in modal already with information as for example: username? if yes, follow a…
-
0
votes2
answers148
viewsQ: function using char and vector in c
Good evening, I’m facing a problem. I’m trying to fill a vector in C that way. int a[5]; void lerValor(char grupo, int posicao, int valor) { grupo[posicao] = valor; printf("%i", grupo[posicao]); }…
-
-1
votes1
answer41
viewsQ: save a record to a list of an entidate
Good evening, I’m practicing my study and I came across a problem. I have an entity User: @Entity public class User { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private…
-
0
votes2
answers66
views -
2
votes2
answers66
views -
1
votes1
answer51
viewsA: Leave a field of Bordepane transparent Javafx
I found out how. just putting: scene.setFill(Color.TRANSPARENT); stage.initStyle(StageStyle.TRANSPARENT); with this your app will be transparent, but when editing the . fxml and by others Node and…
-
0
votes1
answer51
viewsQ: Leave a field of Bordepane transparent Javafx
Good morning, I’m trying to make only one of the components of a Borderpane look transparent. In this case I used . opacity, however it was in Stage. Code I created: @Override public void…