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

    Internal Frames and JMenuBar

    A good example and helpful web page is: http://java.sun.com/docs/books/tutorial/uiswing/components/internalframe.html I learnt it from there and didn't face the problems you are. I hope you get them resolved.
  2. NickWest

    GUI Problem -- Help need Urgently

    As a suggestion, stick away from using GridBagLayout! It's a real awquard one to use and the others tend to do the job well enough! Rgds Nick.
  3. NickWest

    Comparing two identical Objects

    if( rect1 == rect2 ) this will compare the objects memory addresses and therefore, even if they contain the same information, if they are two different objects then it will return false. A way to compare the contents is by using the equals() method. Most classes make the comparison of the...
  4. NickWest

    Comparing two identical Objects

    if( rect1 == rect2 ) this will compare the objects memory addresses and therefore, even if they contain the same information, if they are two different objects then it will return false. A way to compare the contents is by using the equals() method. Most classes make the comparison of the...
  5. NickWest

    Java on EPOC's

    Hi, Does anyone know the command to call a ".opo" program on an EPOC by calling Runtime.exec( "...command..." )? Regards Nick.
  6. NickWest

    List bugs on EPOC's

    Has anyone found problems with the class java.awt.List on an EPOC? If so, are they related to selections, major closedown issues and refreshing issues? I'm bombarder with several different issues related to this class that need resolving! Thanks, Nick.
  7. NickWest

    FTP'ing on PSION's

    Having found a helpfull class to provide an FTP connection at http://www.stanford.edu/~bstaylor/cs/ftpconnection I have tested this class with more than just the example provided and success when connection via my modem from my laptop. The problems start when connecting from a PSION device...
  8. NickWest

    Printing in Java on PSION's

    Printing using the PrintJob on a PC works great in the program I am writing, however, on an EPOC I get a NotImplementedYetException when calling getPrintJob() in the default Toolkit! It comes back to the fact that the JVM on PSION's appears to be a port, not an implementation of the JVM. Does...

Part and Inventory Search

Back
Top