String address,createcustomerAddress;
int inward, issue;
JFrame fm= new JFrame("Alfa Enterprise");
JLabel label=new JLabel("MyAddress");
JLabel label1=new JLabel("CreatCustomerAddress");
JTextField f= new JTextField(50);
JTextField f1= new JTextField(60);
JButton b = new JButton("ADD");
JButton b1 = new JButton("SAVE");
JButton b2 = new JButton("Edit");
JButton b3 = new JButton("Exit");
Scanner in = new Scanner(System.in);
public void welCome()
{
connect();
frame();
}
public void connect()
{
}
public void frame()
{
fm.setSize(600, 700);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.setVisible(true);
JPanel p = new JPanel();
p.add(label);
p.add(f);
p.add(label1);
p.add(f1);
p.add(b);
p.add(b1);
p.add(b2);
p.add(b3);
fm.add(p);
}
public void
public static void main(String args[])
{
}
}