There's a vast amount of stuff out there. If you can't find what you want, it must be pretty esoteric - but it's hard to know quite what you want to know when you're that vague.
You say you are trying Norm's method, but the code simply isn't doing what you say it's doing. I think your existing incorrect code is confusing your thought processes. If you are not prepared to...
It may be worth noting that it doesn't make sense to keep setting text into a text component inside a loop. The text won't be displayed until after the method finishes and the component has a chance...
Hopefully, now he's decided that we're all social inadequates, he'll realize this forum isn't what he thought it was, that there's little point wasting his time here, and he'll stop wasting our time....
It's not clear whether English is your native language, but if it is, please don't use text-speak abbreviations when posting here. We have many people for whom English is a second or third language...
If you're having problems with file I/O, post up any error messages you get. I notice you aren't using exceptions, so you're not handling I/O errors. I would recommend you put in appropriate...
Use layout managers, they will ensure that the components are laid out correctly and move and size appropriately when the frame size changes. See Laying Out Components.
Possibly. I can only suggest you search online for that error message. If others have encountered the same problem, their discussions may be out there.
I don't know if it matches your problem exactly, but there seems to be an IE7/JRE interation bug that gives this error when running applets - see the Java Bug Database : 6694620 - a suggested...
I guess you could make an empirical assessment of the amount of memory occupied by a certain number of objects, by reading in a large number of objects multiple times and tracking memory usage via a...
Java isn't really suited to such direct memory management - in fact it's deliberately designed to avoid it. I suspect you'd be better off using a native language. If you have to have a Java...