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.
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...
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...
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.
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.