Boa Noite pessoal.
Estou com o sequinte problema:
- Tenho uma interface gráfica no Netbens onde faço minhas consultas do banco, Digito o Id e faço a consulta, os dados são listados nos meus jtextfield.(Até aqui tudo certo).
- O problema quando tento alterar um campo jtextField para fazer um update não consigo digitar nada nesses campos, como faço para digitar valores nos campos que foram consultados?
[code]
// CÓDIGO PARA UPDATE DE CLIENTES
private void btAlterarActionPerformed(java.awt.event.ActionEvent evt) {
Cliente cli = new Cliente();
Endereco end = new Endereco();
Telefone tel = new Telefone();
cli.setId(Integer.parseInt(txtBox.getText()));
end.setId(Integer.parseInt(txtBox.getText()));
tel.setId(Integer.parseInt(txtBox.getText()));
JDBCUpdate alterar = new JDBCUpdate();
String nome = txtNome.getText();
Long cpf = Long.parseLong(txtCPF.getText());
String rua = txtRua.getText();
int numero = Integer.parseInt(txtNumero.getText());
String residencial = txtResidencial.getText();
String celular = txtCelular.getText();
Endereco endereco = new Endereco(WIDTH, rua, numero, nome);
Telefone telefone = new Telefone(WIDTH, residencial, celular, residencial);
Cliente cliente = new Cliente(WIDTH, nome, cpf, celular, rua, telefone, endereco);
alterar.alterarCliente(cliente);
alterar.alterarEndereco(endereco);
alterar.alterarTelefone(telefone);
}[/code]