israelcomex 31/7/2018, 13:08
Bom dia JPaulo,
Sim, claro. O banco completo deve facilitar.
https://www.dropbox.com/s/bl3dvqzqlwcbxyk/Banco%20Novo.mdb?dl=0
Private Sub btsalvar_Click()
Dim db As DAO.Database
Dim rs As DAO.Recordset
Set db = CurrentDb
Set rs = db.OpenRecordset("TAB_LANCAMENTO_ERRO")
rst.AddNew
rst!CODIGO_DE_BARRAS = txt_codBarras.Value
rst!PRACA = txt_praca.Value
rst!AD_CAIXA = txt_AdCaixa.Value
rst!VOL_CAIXA = txt_VolCx.Value
rst!DJ = txt_Dj.Value
rst!DATA_FAT = txt_DataFat.Value
rst!DIA_CP = txt_DiaCp.Value
rst!CAMP = txt_ListaCamp.Value
rst!Chapa = txt_ListaChapa.Value
rst!Nome = txt_nome.Value
rst!Data = txt_Data.Value
rst!COD_ERRO = txt_ListaCodErro.Value
rst!TIPO_ERRO = txt_TipoErro.Value
rst!DESCRICAO_ERRO = txt_DescErro.Value
rst!COD_DESVIO = txt_ListaCodDesvio.Value
rst!MOTIVO_DESVIO = txt_MotivoDesv.Value
rst!LINHA = txt_Linha.Value
rst!ESTACAO = txt_Estacao.Value
rst!OBS = txt_Obs.Value
rst!LANCADO_POR = txt_lancador.Value
rst!LIDER_RESPONSAVEL = txt_Lider.Value
rst.Update
txt_codBarras.Value = nill
txt_praca.Value = nill
txt_AdCaixa.Value = nill
txt_VolCx.Value = nill
txt_Dj.Value = nill
txt_DataFat.Value = nill
txt_DiaCp.Value = nill
txt_ListaCamp.Value = nill
txt_ListaChapa.Value = nill
txt_nome.Value = nill
txt_Data.Value = nill
txt_ListaCodErro.Value = nill
txt_TipoErro.Value = nill
txt_DescErro.Value = nill
txt_ListaCodDesvio.Value = nill
txt_MotivoDesv.Value = nill
txt_Linha.Value = nill
txt_Estacao.Value = nill
txt_Obs.Value = nill
txt_lancador.Value = nill
txt_Lider.Value = nill
End Sub
Última edição por israelcomex em 31/7/2018, 13:33, editado 1 vez(es)