Thank you very much for the surrounding code. I am using an
IDE, and it would have been very messy if I had cut and pasted the whole thing.
I am using Netbeans, and TextPad++ for development.
===========
Requirements.
===========
I need to generate a program using jButtons, jfields, jArray, jPannel, and jFrame.
I need to create a two dimensional application that will store Money earned and Time spent helping clients.
.. In other words... the two dimensional array--- double array[][].
I need to be able to make a button that quits me out of the application = Easy..
I need to have one button that every time I hit the button it gathers minutes and dollars/cents, and places these items in my array.
===========
I started out with two "for" statements. One for rows, and one for columns.
It seamed more expedient to create just one "for" statement and make the rows static.
=========
Currently whenever I hit the enter info button, it does put the information in the array[0][0],
but the second time I hit the enter information button,
it puts my new information in the same slots of the array[0][0] not iterating to the next row.
Here is the most recent thing I have tried. (I removed the for statement altogether)