import java.applet.*; import java.awt.*; public class applet20 extends Applet { TextField T=new TextField(5); TextField U=new TextField(5); Panel MiPannello = new Panel(); public void init() { MiPannello.setLayout(new FlowLayout(FlowLayout.RIGHT, 5, 0)); MiPannello.add(T); MiPannello.add(U); MiPannello.setBackground(Color.white); add(MiPannello); } }