Frame f = new Frame (); f.show(); Window w = new Window (f); w.add ("North", new Label ("This is a Warning Message")); w.add ("South", new Button ("Ok")); w.setBackground (Color.gray); w.resize (200, 200); w.show();