Posts by vinuales • 25 points
3 posts
-
0
votes3
answers7634
viewsA: Error importing CSV into phpMyAdmin
To correctly import a CSV file, auto increment fields (id type) must be empty. To do so, save your excel spreadsheet in csv format, leaving the field of the respective ID fields empty. Then open the…
-
1
votes1
answer315
viewsQ: How to capture colors from an image on a Jlabel that behind another Jlabel?
I need to get the pixel colors of an image inserted in a JLabel with MouseMotionListener, and this Jlabel is under or behind another Jlabel. I know it is possible to get a background color behind a…
-
1
votes1
answer122
viewsQ: How to capture the colors of a label that is behind another label?
I have two Jlabels superimposed on each other. JLabel label = new JLabel(); label.setBounds(15, 15, 300, 300); label.setOpaque(true); label.setBackground(Color.red); JLabel label1 = new JLabel();…