You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tblClientes não consegue enviar seus dados para as textbox de formulário.
` // Metodo para setar os campos com o conteudo da tabela
public void setarCampos() {
int[] setar = tblClientes.getSelectedRows();
txtCliNome.setText(tblClientes.getModel().getValueAt(setar, 1).toString());
txtCliEnd.setText(tblClientes.getModel().getValueAt(setar, 2).toString());
txtCliFone.setText(tblClientes.getModel().getValueAt(setar, 3).toString());
txtCliEmail.setText(tblClientes.getModel().getValueAt(setar, 4).toString());
}`
The text was updated successfully, but these errors were encountered:
tblClientes não consegue enviar seus dados para as textbox de formulário.
` // Metodo para setar os campos com o conteudo da tabela
public void setarCampos() {
int[] setar = tblClientes.getSelectedRows();
txtCliNome.setText(tblClientes.getModel().getValueAt(setar, 1).toString());
txtCliEnd.setText(tblClientes.getModel().getValueAt(setar, 2).toString());
txtCliFone.setText(tblClientes.getModel().getValueAt(setar, 3).toString());
txtCliEmail.setText(tblClientes.getModel().getValueAt(setar, 4).toString());
The text was updated successfully, but these errors were encountered: