Activity Stream
- Older Activity
-
Today, 08:05 PMDigital Larry replied to a thread Confusion regarding changing mouse cursors explicitly in AWT / SwingWell that was way easier than I imagined it would be. I was already making a call into the JPanel to set the edit mode from the JMenu handler...7 replies | 44 view(s) -
Today, 07:58 PMIf you really want to understand what is going on I suggest two things. First, stay away from GUI Designers. They muddle the code and you will...2 replies | 62 view(s) -
Today, 07:56 PMYou're welcome of course; here's a nice little riddle to spice things up a bit ;-) import java.util.ArrayList; import java.util.List; ...5 replies | 40 view(s) -
Today, 07:55 PMDigital Larry replied to a thread Confusion regarding changing mouse cursors explicitly in AWT / SwingSorry about double posting!!!! Well OK, setting the mouse cursor within the JFrame would also change it within the JPanel which is contained...7 replies | 44 view(s) -
Today, 07:53 PMallaudin replied to a thread The following code showing run time error . . . . I want to know the reason in New To JavaModified : class OtherClass{ String s="rajeev"; String getName() { return s; } } public class OtherClassObjectAccess { public static void...5 replies | 73 view(s) -
Today, 07:53 PMIf you need explanation, I assume you didn't write it. Correct? Regards, Jim2 replies | 74 view(s) -
Today, 07:51 PMCheck out BufferedImage (Java Platform SE 7 ) and Raster (Java Platform SE 7 ) and other links the API points too. Also check out the Java...2 replies | 12 view(s) -
Today, 07:49 PMJust write keyboard.close() in last of your readInputDensitySIUnits() function.9 replies | 90 view(s) -
Today, 07:46 PMRead all about it in the API documentation for the BufferedImage class; you can manipulate each bit in such an object. kind regards, Jos2 replies | 12 view(s) -
Today, 07:44 PMtotalspelnerd replied to a thread JFrame.setResizable(false); problem - makes frame bigger, why? in AWT / SwingI was just making a quick example. I do not code like this normally.4 replies | 46 view(s) -
Today, 07:41 PMok thanks josAH ....5 replies | 40 view(s) -
Today, 07:40 PMFirst you are comparing two unrelated terms, static and private. Private indicates scope of access. Static indicates how it is accessed (plus some...9 replies | 90 view(s) -
Today, 07:37 PMThe poster specifically asked about a tutor, not video tutorials. I removed the irrelevant link. db3 replies | 78 view(s) -
Today, 07:35 PMMoved from New to Java db3 replies | 78 view(s) -
Today, 07:34 PMMoved from Advanced Java. db2 replies | 62 view(s) -
Today, 07:33 PMDarrylBurke replied to a thread Confusion regarding changing mouse cursors explicitly in AWT / SwingI've merged two threads here. Please don't double post again. Note that double posting the same question is a violation of the second paragraph of...7 replies | 44 view(s) -
Today, 07:31 PMHow to insert checkbox values into mysql and retrieve them using java0 replies | 8 view(s) -
Today, 07:28 PMDarrylBurke replied to a thread JFrame.setResizable(false); problem - makes frame bigger, why? in AWT / SwingWhat? Why? db4 replies | 46 view(s) -
Today, 07:25 PMDarrylBurke replied to a thread Confusion regarding changing mouse cursors explicitly in AWT / SwingI think we're going to need that SSCCE. Good call on trying wrapping in invokeLater(...), pending Swing code can sometimes reset settings made by...7 replies | 44 view(s) -
Today, 07:15 PMWe have a section for Reviews / Advertising. It might be a fit there. db1 replies | 35 view(s) -
Today, 07:08 PMI have an image either in monochrome bitmap or even in RAW i want to edit this image pixel by pixel by reading data from an image. Is it possible...2 replies | 12 view(s) -
Today, 06:50 PMwhats the problem?2 replies | 74 view(s) -
Today, 06:41 PMYou may Go and register in Moderator edit: irrelevant link removed] for online vidio tutorial3 replies | 78 view(s) -
Today, 06:18 PMYep, the compiler does it for you; actually is creates the code: Integer n= Integer.valueOf(40). kind regards, Jos5 replies | 40 view(s) -
Today, 05:57 PMtotalspelnerd replied to a thread JFrame.setResizable(false); problem - makes frame bigger, why? in AWT / SwingUpdated the post so the code is there now. Note that the problem only happens sometimes. Sometimes in like certain classes this problem doesn't...4 replies | 46 view(s) -
Today, 05:36 PMyou mean Integer n = 40 is automatically boxed to Integer n = new Integer(40) ?5 replies | 40 view(s) -
Today, 05:32 PMrajpan06 replied to a thread The following code showing run time error . . . . I want to know the reason in New To JavaActually what you are i am not getting it . . . Please modify the code thanks for response5 replies | 73 view(s) -
Today, 05:31 PMThat is a mechanism called 'auto boxing'; everywhere where an Integer is expected and an int is supplied, the int is automatically 'boxed' in an...5 replies | 40 view(s) -
Today, 05:31 PMe - nm Fantastic! Thank you very much. Problems solved. :(clap):9 replies | 90 view(s) -
Today, 05:07 PMWhile searching difference between Integer and int I learnt that int is primitive datatype and Integer is object. Ok that's good. Now as Integer is...5 replies | 40 view(s)



PDF to TIFF Conversion & Control...
Yesterday, 11:39 AM in Java Software