Search:

Type: Posts; User: coltson

Search: Search took 0.10 seconds.

  1. Re: Why doesn't JTextArea execute in this piece of code?

    More of the code:



    JFrame jframe = new JFrame ();
    jframe.setVisible (true);
    jframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    JTextArea ta = new JTextArea(20,40); ...
  2. Why doesn't JTextArea execute in this piece of code?

    Hi I have the following code:

    JFrame jframe = new JFrame ();
    .........
    JTextArea ta = new JTextArea(20,40);
    .........
    try {
    FileReader fr = new FileReader...
Results 1 to 2 of 2