Hi Ed,
that's brilliant! Thankyou, code compiles now..
-> ha! So now of course I attempt to run it and get:
----------------------------------------------------------------------
C:\Java Chat Application WIP\My Source>java ChatClientApplication.class
Exception in thread "main" java.lang.NoClassDefFoundError: ChatClientApplication
/class
----------------------------------------------------------------------
I am not 'constructing' correctly??, i.e.
public class ChatClientApplication extends Frame implements ActionListener, ItemListener, WindowListener
and then:
//Class constructor method..
public ChatClientApplication()
{
// initialise the user interface
init();
}
and then:
//Main method to bring everything together..
public static void main(String args[])
{
new ChatClientApplication();
}
...if anyone is bored and wants to help!
:eek: