Não deu certo!
O problema está na hora de transferir para o banco de dados. Quando clico em salvar vai para o banco de dados, porém salva nesse formato ("00/17) usando este código abaixo:
Private Sub cmb_cadastrar_Click()
Application.ScreenUpdating = False
Dim linha As Integer
linha = 2
Do Until shtDados_Fechamento.Cells(linha, "A") = ""
If shtDados_Fechamento.Cells(linha, "A") = txt_id.Text Then
MsgBox "Este código já está cadastrado", vbInformation, "Cadastro Negado"
Exit Sub
End If
linha = linha + 1
Loop
Do Until shtDados_Fechamento.Cells(linha, "A") = ""
linha = linha + 1
Loop
'Lança os dados na Planilha shtDados_Produtor
shtDados_Fechamento.Cells(linha, "A").Value = txt_id.Value
shtDados_Fechamento.Cells(linha, "B").Value = txt_data.Text
shtDados_Fechamento.Cells(linha, "C").Value = cmb_razao.Text
shtDados_Fechamento.Cells(linha, "D").Value = txt_nascimento.Text
shtDados_Fechamento.Cells(linha, "E").Value = txt_fazenda.Text
MsgBox "Cadastro salvo sucesso!", vbInformation, "Cadastro"
Call cmb_Cancelar_Click
Application.ScreenUpdating = True
End Sub
Att,
Postado : 15/02/2017 12:12 pm