Results 21 to 22 of 22
-
Making randomX and randomY static is a kludge to fix another error somewhere else in your program. I have a feeling that some other class is changing the values of these numbers elsewhere, but you don't reflect those changes back to the class that needs the information, the one with the two random methods above, but it's impossible to say where the error is in code not shown.
-
Correction: It is more likely that you have multiple instances of the IRPanel class, perhaps you don't even realize that you do (check to see if and where you call new IRPanel()). If so, you may be assuming that changes to one will cause changes to another, and that won't happen. The solution is to have only one instance of this class and pass references to it where it is needed.
Similar Threads
-
get url returned by search
By avizana in forum NetworkingReplies: 2Last Post: 03-14-2011, 07:43 PM -
2 Items returned on itemStateChanged() Test???
By AcousticBruce in forum New To JavaReplies: 1Last Post: 01-08-2011, 04:10 PM -
SplashScreen.getSplashScreen() returned null
By kmm1977 in forum AWT / SwingReplies: 4Last Post: 06-21-2010, 11:04 AM -
SplashScreen.getSplashScreen() returned null
By ibrahimyoussof in forum AWT / SwingReplies: 2Last Post: 04-17-2010, 02:51 PM -
Cant we have two values returned from a method in a class
By jaiminparikh in forum Advanced JavaReplies: 7Last Post: 03-21-2009, 03:20 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks