tags:

views:

47

answers:

1

i was able to remove the title bar from the JInternalFrame but i don't know how to remove the borders .

Thanks in advance

+3  A: 

To remove the border simply call frame.setBorder(null);

Any border that is null is simply not shown.

jjnguy