Problem with adding N number of components in a JPanel.

Is there any limitation to add N number of JTextField in JPanel.Iam getting out of memory error when too many JTextFields are added in a panel.Is there any way to recover from this problem? Pls reply...
[209 byte] By [RajBabua] at [2007-11-26 20:44:22]
# 1

> Is there any limitation to add N number of JTextField

> in JPanel.Iam getting out of memory error when too

> many JTextFields are added in a panel.

How many textfields are you adding to get this memory. The out of memory error may be because of some other reason.

Is there any

> way to recover from this problem? Pls reply...

Try increasing the heap space

watfora at 2007-7-10 2:05:08 > top of Java-index,Desktop,Core GUI APIs...
# 2
> Iam getting out of memory error when too many JTextFields are added in a panel.Then you have a terrible design for the GUI. There is no way a user is going to enter/change data in that number of text fields.Redesign your application. A JTable would be a good place to
camickra at 2007-7-10 2:05:08 > top of Java-index,Desktop,Core GUI APIs...