The Movie Ticket System system is developed using Java. This project is suitable for java beginners who wants to improve java skills.
Paste the code Inside the Add Button
txtcount.setText(""); int numbers = Integer.parseInt(txtticket.getText()); int tot = numbers * 20; txttotal.setText(String.valueOf(tot)); for(int x=1; x <= numbers; x ++) { txtcount.setText(txtcount.getText()+"Your Ticket No " + x + "\n" ); }