Created
May 20, 2012 16:56
-
-
Save carlossaraiva/2758756 to your computer and use it in GitHub Desktop.
Criação de uma tabela
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JScrollPane scrollPane2 = new JScrollPane(); | |
scrollPane2.setViewportBorder(null); | |
scrollPane2.setBounds(356, 76, 320, 109); | |
painelEstoque.add(scrollPane2); | |
ultimasSaidasModel = new DefaultTableModel(5,4); | |
tblUltimasSaidas= new JTable(); | |
tblUltimasSaidas.setModel(ultimasSaidasModel); | |
scrollPane2.setViewportView(tblUltimasSaidas); | |
add(tab); | |
tblUltimasSaidas.setGridColor(Color.white); | |
ultimasEntradasModel.setValueAt("String", 0, 0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment