Posts by Mako • 43 points
7 posts
-
0
votes1
answer100
viewsQ: Delete programmatically created Labels
I’m developing a mapping application that uses Abels to name the different rooms in a building. The code I use to create the Abels is as follows: private void button2_Click(object sender, EventArgs…
-
0
votes1
answer54
viewsQ: Create a label when reading data from a file
I am trying to create a button that, using the information deposited in 3 files (labelName, Labelx, Labely), create a number of cells according to the number of entries. That is, if I have 1 entry…
-
0
votes1
answer31
views -
0
votes0
answers106
views -
0
votes1
answer70
viewsQ: Arraylist does not display correctly
I have a super class Person with 2 sub classes (Student and Teacher). However I made another class "List" to create Arraylist and later handle everything. When using the List the data is accepted…
-
2
votes1
answer111
viewsQ: I’m having trouble adding a new student to my arraylist
I am reviewing previous java matter and in the middle of reviewing arraylists I found it difficult to add a student to the list. Each student has the following fields: name, student type, course…
-
1
votes2
answers509
viewsQ: How to view object information from my Arraylist?
I want to create a ArrayList to store information about students (name, number and status) but I’m not getting Arraylistadicione the information. The code I have is this:: Java class. package turma;…