Search:

Type: Posts; User: javapenguin

Search: Search took 0.14 seconds.

  1. Replies
    6
    Views
    2,146

    [SOLVED] Re: 2DArry from Textbox input (pls hlp)

    Not quite 100% sure if this will work, but you could try changing

    //checks for incorrect values entered
    if (minInt < 0) {
    IllegalArgumentException exception
    ...
  2. Replies
    6
    Views
    2,146

    [SOLVED] Re: 2DArry from Textbox input (pls hlp)

    ActionListener eListener = new AddEnterListener();

    AddActionListener is probably a void method.

    I very highly doubt it returns an ActionListener or a subclass of ActionListener.
  3. Replies
    6
    Views
    2,146

    [SOLVED] Re: 2DArry from Textbox input (pls hlp)

    First off,

    int[][] tArray = new int[index][2];

    means

    int [][] tArray = new int[0][2];

    which means that there are 3 values in row 0 and no values in any other row.
Results 1 to 3 of 3