Hi all, I'm new to this Java GUI field and was wondering as to how to split a frame for an application like Chat, where I need to separate out the incoming and outgoing texts in two separate areas using only AWT. I accomplished it using JSplitPane but my project specification is not to use Swing at all. Any help is highly appreciated. Thanks, Vidya.
VIJAY Yadlapati
Ranch Hand
Joined: Aug 04, 2003
Posts: 175
posted
0
Have 2 panels, InComongPanel and OutGoingPanel on your frame. Add each of the components (such as textareas, buttons etc.) to the corresponding panel and add those panels to the Frame.