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. Canuck2419

    need help with NetBeans & JTable

    Hello again! Blush Blush I spent a little time working in my other office and... I was suffering from a little brain fade. This is the story: Running under NetBeans in debug mode I clicked on the table cell, entered a number , then clicked on a button. NetBeans caught the event just like I...
  2. Canuck2419

    Calculating elapsed time

    you might just do something like: <code> long elapsedTime = endTime - startTime; int seconds = elapsedTime / 1000; System.out.println ("seconds " + seconds); </code> Is this value ever going to exceed 60 seconds? This might not be a problem until seconds gets quite large i.e. >120 sec. even...
  3. Canuck2419

    need help with NetBeans &amp; JTable

    I am having a problem extracting data from an editable cell in a JTable. My test case is initialized with this code snippet: <code> Vector <Vector> vv = new Vector (); Vector v = new Vector (); Vector n = new Vector (); CrewPanel() { v.add (1); v.add ("d")...

Part and Inventory Search

Back
Top