Posted By:
Naveed_Azhar
Posted On:
Friday, August 17, 2001 03:21 AM
Hi there
For menu components do something like this. It will work for you.
Component[] comps = fileMenu.getMenuComponents();
for ( int i = 0; i < comps.length ; i++ ) {
comps[i].setEnabled(false);
}
and for ordinary components you can do
Component[] comps = this.getContentPane().getComponents();
for ( int i = 0; i < comps.length ; i++ ) {
comps[i].setEnabled(false);
}
naveed@hotmail.com