> I'm running a java app on a win2000 box and one of the popups can have
> lots of entries, this causes the popup menu to be taller than the
[quoted text clipped - 7 lines]
> there a 3rd party version of the JPopupMenu or some other mechanism I
> can use ?
To get around this I would reorganize the popup-menu to contain nested
sub-menus:
JPopupMenu popupMenu = new JPopupMenu();
JMenu subMenu1 = new JMenu("1");
subMenu1.add(...);
subMenu1.add(...);
...
popupMenu.add(subMenu1);
JMenu subMenu2 = new JMenu("2");
subMenu2.add(...);
subMenu2.add(...);
...
popupMenu.add(subMenu2);

Signature
Thomas
swebb99@gmail.com - 03 Aug 2006 22:32 GMT
> > I'm running a java app on a win2000 box and one of the popups can have
> > lots of entries, this causes the popup menu to be taller than the
[quoted text clipped - 23 lines]
> --
> Thomas
Thanks Thomas I think your right. Now time for another entry in the
group asking for any algorithms that can be used to construct the
submenu's.
Steve