I would like you to break automatically when you reach the maximum number of letters / words on that line.
When I put a pizza it works quietly:
ButwhenIputmorethanonepizzathetextgetsbiggerthanthejLabelthereisnottoseeallthepizzasnorthetotal:
Mycode:
privatevoidbtnAdicionarActionPerformed(java.awt.event.ActionEventevt){//Verificarseolocaldeentregafoiduplamenteselecionadoousenenhumif(((checkLocal.isSelected())&&(checkCasa.isSelected()))||((checkLocal.isSelected()==FALSE)&&(checkCasa.isSelected()==FALSE))){JOptionPane.showMessageDialog(null,"Foram escolhidos dois locais de entrega ou nenhum foi selecionado.\nPor favor verifique o local de entrega");
}else if(checkLocal.isSelected()){
String Entregar =checkLocal.getText();
}else if(checkCasa.isSelected()){
String Entregar =checkCasa.getText();
}
//Os dados foram verificados
String Nome = txtNomeVenda.getText();
String Endereco = txtEndereco.getText();
String Sabor1 = (String) SaborPizza1.getSelectedItem();
String Sabor2 = (String) SaborPizza2.getSelectedItem();
String Borda = (String) BordaEscolha.getSelectedItem();
String SaborTodo = "";
if(Borda.equals("Nenhuma")){
Borda = "";
}
if(Sabor2.equals("Nenhum")){
SaborTodo = "1 "+Sabor1+" Borda:"+Borda;
}else{
SaborTodo = " 1/2"+Sabor1+" 1/2"+Sabor2+" \nBorda:"+Borda;
}
PizzaNota.setText(PizzaNota.getText()+"\n"+SaborTodo+"");
txtNomeNota.setText(txtNomeVenda.getText());
}