se puderem, me digam onde estou errando, pois não ta gravando na tabela do access
Private Sub IncluirDados()
Dim vConfMsg As Integer
Dim vErro As Boolean
'inicializa as variaveis auxiliares
vConfMsg = vbExclamation + vbOKOnly + vbSystemModal
vErro = False
'verifica os dados digitados
If TxtNomeCliente.Text = Empty Then
MsgBox "O campo Nome não foi preenchido.", vConfMsg, "Erro"
vErro = True
End If
If TxtTel.Text = Empty Then
MsgBox "O campo Telefone não foi preenchido.", vConfMsg, "Erro"
vErro = True
End If
If TxtCidade.Text = Empty Then
MsgBox "O campo Cidade não foi preenchido.", vConfMsg, "Erro"
vErro = True
End If
If TxtDataInicioServico.Text = Empty Then
MsgBox "O campo Data Entrada não foi preenchido.", vConfMsg, "Erro"
vErro = True
End If
If TxtHoraInicioServico.Text = Empty Then
MsgBox "O campo Hora Entrada não foi preenchido.", vConfMsg, "Erro"
vErro = True
End If
If TxtProduto.Text = Empty Then
MsgBox "O campo Produto não foi preenchido.", vConfMsg, "Erro"
vErro = True
End If
If TxtMotivo.Text = Empty Then
MsgBox "O campo Motivo da Chamada não foi preenchido.", vConfMsg, "Erro"
vErro = True
End If
If TxtObs.Text = Empty Then
MsgBox "O campo Observação não foi preenchido.", vConfMsg, "Erro"
vErro = True
End If
'Se acontece um erro sai da sub sem gravar
If vInclusao = True Then
With rsSelecao
.AddNew
!Nome = TxtNomeCliente.Text
!Telefone = TxtTel.Text
!Cidade = TxtCidade.Text
!Data_Inicio_Servico = TxtDataInicioServico.Text
!Hora_InicioServico = TxtHoraInicioServico.Text
!Produto = TxtProduto.Text
!Motivo_Chamada = TxtMotivo.Text
!Obs = TxtObs.Text
End With
End If
MsgBox "Inclusão ok", vbInformation + vbOKOnly + vbApplicationModal, "OK"
LimparTela
errGravacao:
With Err
If .Number <> 0 Then
MsgBox "Houve erro na inclusão dos dados na tabela.", vbExclamation + vbOKOnly + vbApplicationModal, "Erro"
.Number = 0
End If
End With
End Sub
Pergunta
tito13
se puderem, me digam onde estou errando, pois não ta gravando na tabela do access
Informa que foi incluido mas não grava.
fico no aguardo
Link para o comentário
Compartilhar em outros sites
8 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.