Search results

  1. I

    Java GUI Creation

    Does anyone else hate it? I'm not picking on Java specifically. I just created the non-gui part of an internal multicast messenger for work - but connecting it to a decent looking GUI is a complete hassel. Tips and tricks?
  2. I

    Java Look And Feel

    Ok, so I want to make an application of mine themable. I'm kind of cheating and trying to use 3rd Party Java Look And Feel .jars So, I first list all the files in the 'theme' dir I loop the listed files for ones which end in ".jar" I create a JarFile object for any Jar Files which are...
  3. I

    I went to Venice

    ...go on, think of the worst thing that could happen. I'll give you a clue: I broke my PSP and Camera because of it. :(
  4. I

    Java Class Loading

    I get a cast exception on line 25?! try{ Plugin plugin = (Plugin) plugins.get(i).newInstance(); }catch (Exception e){ System.out.println(e); client.eventLog.logError("Unable to initialize plugin", e.getMessage()); }...
  5. I

    Application Plugins

    If I wanted to make an (Java) app that I wanted to be plugin compatable, how would I go about doing this? The only way I can see to do this is: -Have a plugin folder -Get all the .class files in the folder and load them into an array within my main app -Each plugin class would have a...
  6. I

    Java GUI'ing

    Hey, I'm pretty good at coding in Java, and I know how to create GUI's using the standard Swing/AWT classes - But with a new program I'm coding some elements need pretty big methods to create them. At the moment for a program I am producing I have a Client class with 1300+ lines of code...
  7. I

    LPT10:

    for some reason people are requesting that I add an LPT10: port to the PC configuration at work. Is there a limitation in Windows I'm not aware of, as it doesn't seem possible. I added the key reg edit, (LPT1-9 are already present and working, but no dice! :(
  8. I

    Trouble with flat mate

    OK - This guy me and a friend live with is a bit of a wierdo. We are all out on a work placement year in Italy and so were kind of forced to live with him for rents sake. Anyway, he is VERY VERY VERY reserved, and we gave up talking to him after about a month of asking him out with us on...
  9. I

    External access to FTP server :(

    Does anyone know what I'm doing wrong - I have forwarded port 2121 for the server (just incase this Italian ISP blocks port 21) and used the following config file: ftpd_banner=NSLU2 FTP Server listen=YES listen_port=2121 #connect_from_port_20=YES hide_ids=YES max_clients=5...
  10. I

    VSFTPD + NSLU2 + DSL-G624T = No worky?

    Does anyone know what I'm doing wrong - I have forwarded port 2121 for the server (just incase this Italian ISP blocks port 21) and used the following config file: ftpd_banner=NSLU2 FTP Server listen=YES listen_port=2121 #connect_from_port_20=YES hide_ids=YES max_clients=5...
  11. I

    Java Drag Window

    I tried adding a mousemovementlistener to a JPanel which listenened for drag movements - in this code I delt with setting the location of the JFrame as the mouse was dragged - This approach 'worked' but I get MAJOR flickering as the frame is repainted. Any ideas on how to drag move the JFrame...
  12. I

    JTextPane + JScrollPane problems

    Ok, I've Googled all over and can't seem to find a good snippit of code to fix my problem. All I need is for the ScrollPane to autoscroll to the bottom of the JTextPane everytime some text is appended to it. :frown: Help please!
  13. I

    Pigeon Messenger

    Here is a link to an early Beta of a program I've been working on in my spare time It's a chat program - all coded by me. I can guarentee there is no walware etc. I'd love some feedback if anyone has the time to install it - It's not feature complete, so don't be scared if some things are...
  14. I

    Java RMI

    Hello folks. Annoying problem I am having: I have a client::server application connected via RMI, the problem is if the client calls a remote method, and the server needs to then call a remote method on the client inside the original method call from the client (I hope that makes sense :D) -...
  15. I

    Just bought

    my 14th 'Yes' album. Yep...that's 14 legally owned albums, what's that...a world record? ;) Discuss.
  16. I

    Java JTextPane and String Tokens -> Images

    Greetings. This is regarding a chat program I am making. So far it is a pretty standard program: JTextPane to make message (inc smilies), which is transferred to all clients in the form of a String - : ) = Smiley face etc. The problem is displaying it over at the other end. The only...
  17. I

    Slow Wireless ADSL

    Hello guy - I've posted this on a few forums, and still my problem has not been solved. I have an ADSL 2Mbit connection, which when connected via a USB modem I get 200-225KBps down-stream (which is good). But, when I set up a wireless network for my family to share the connection I...