chi-chih Lin - 2003-11-21

Logged In: YES
user_id=909665

Sruthan,

To avoid mulitiple instances, we can create 2 variables
friendWIN, partyWIN as instance variable of FriendGUI
then create instances when App starts

then use two method

FriendWindow getFriendWindow() { return frinedWIN;}
PartyWindow getPartyWindow() { return partyWIN; }

return reference to those instances from actionPerformed()
inside FriendGUI.

I have the modified FriendGUI.java ready.

regards