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 SkipVought 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. jurchi

    ChangeListener called twice

    There's no way to make it fire the event only when the menu item is selected, but you have the following option: In the stateChanged() method implemented in the ChangeListener object sent as a parameter to yourMenuItem.addChangeListener() method, check for that menu item's isArmed() and...
  2. jurchi

    Getting a Web Image

    I hope this helps: http://java.sun.com/developer/JDCTechTips/2004/tt0210.html#2 -Razvan
  3. jurchi

    char declaration

    try '\u3332'
  4. jurchi

    How to track column selections in JTable?

    Create a new class that extends DefaultTableCellRenderer and override its getTableCellRendererComponent method, class NoSelectionBorderCellRenderer extends DefaultTableCellRenderer { public Component getTableCellRendererComponent(<parameters>) { Component comp =...

Part and Inventory Search

Back
Top