Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. davidkiwi

    JAVA EventListerner

    As wushutwist said, you can implement as many interfaces as you want, eg import java.awt.*; import javax.swing.*; import java.awt.event.*; public class assignment extends JFrame implements KeyListener, MouseListener { public static void main(String args[]) {...
  2. davidkiwi

    JTable problems, Resizing and Editing

    You could try something like this for setting the column sizes: for(int id = 0; id < 2; id++) { column = tableName.getColumnModel().getColumn(id); switch(id) { case 0: column.setPreferredWidth(10); break; case 1: column.setPreferredWidth(30); break; } } or you could just set...

Part and Inventory Search

Back
Top