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 Wanet Telecoms Ltd 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. JavelinMan

    JTable Paging

    And yet, regrettably, the whole construct fails for a record set that is not divisible by the page size. Has anyone found a solution such as this with an uneven record set?
  2. JavelinMan

    Display a PDF file

    I think the solution is to convert the pdf file to an html page and then the jEditorPane will treat it like a URL. i.e wasPDF.htm => yourEditorPane.setPage(asPDF.htm); I just did something like this at work for the help dialog of our current release. I modified a tutorial I found at...
  3. JavelinMan

    Getting an IDE for Java Micro edition?

    NetBeansIDE 3.5 Free version of Sun One Studio 5 Standard Edition Awesome tool for development including ME www.netbeans.org Enjoy!
  4. JavelinMan

    need help with JComboBox -----------

    Have you tried simply using your "zoom" value as a scalar on the JFrame's Dimensions and setSize() and refresh?
  5. JavelinMan

    cannot detect when text area is empty

    Maybe this is too simple (I think pete is correct to look at your events) but consider changing this -----------------code------------------------------- if (textArea.getText().length() == 0) { label.setText("No text in textArea"); }...
  6. JavelinMan

    Urgent! Drawing graphic in Java

    Are the 4 statuses mutually exclusive? only one at a time?
  7. JavelinMan

    problem running a program

    Maybe you can use an archiving program to open your dmc.jar and look at the manifest. It should tell you what the creator of the jar called the classpath to run it. Then you will know for sure how to proceed. Good luck.
  8. JavelinMan

    slow mouse action

    For clarification, what is the parent container? I'm thinking the lag may be from the first JFrame mentioned. Can you make use of a JInternalFrame or a JDesktopPane instead? My experience says that only the parent container should be a JFrame, but I don't know your full context.
  9. JavelinMan

    during drag and drop behaviour cursor looses cohesion

    Hey there, I'm sorry but this application has about 20 classes, and this panel in particular has over 20 methods. Code snippets will NOT be helpful in this case (it would simply take too much room-seems "spammy" to me, sorry). I think that the issue is with the way the...
  10. JavelinMan

    during drag and drop behaviour cursor looses cohesion

    My new project entails fixing a bug in currently updated (Java 1 to Java 2) code that tries to simulate a drag & drop procedure. The correction I need to fix is that WYSInotWYG. i.e. the cursor "comes loose" from the object. when you try to reconnect it "jumps" out of the...
  11. JavelinMan

    need to trim load time of application

    Thanks guys! Removing the fileChoosers to where they are needed really sped up the show. Thanks again for the successful response!
  12. JavelinMan

    need to trim load time of application

    I will relocate the fileChoosers and retest, and then reply, Thanks
  13. JavelinMan

    need to trim load time of application

    That's what I was thinking, here are the 35 lines:: //35 lines that take almost 40% of load time lTimeValue111112 = new java.util.Date().getTime(); Newfc = new javax.swing.JFileChooser(); Openfc = new javax.swing.JFileChooser(); Savefc = new javax.swing.JFileChooser(); Copyfc = new...
  14. JavelinMan

    need to trim load time of application

    Hey there, I'm working on an application built in SunOne4 rebuilt from Symantec Cafe. on SuSe7-linux (Intel 1.7Ghz with 512DDR) it loads in 2 seconds on average; the 900Mhz/128SDRAM w/XP runs average 5 seconds; the 367Mhz/128 w/98SE runs 10 seconds, and my boss's laptop (XP & PIII i think)...
  15. JavelinMan

    Need help building a Unix client program

    I need to write a simple client prog to request info from a known server. I do not know where to begin. Please give any guide, hints or spoilers. Would be much appreciated. I have Borland 5.02 from Builder 4.0. Thanks

Part and Inventory Search

Back
Top