NUNCA MAIS PASSE RAIVA POR NÃO CONSEGUIR RESOLVER UM PROBLEMA COM O EXCEL - GARANTIDO!
UNIVERSIDADE DO VBA - Domine o VBA no Excel Criando Sistemas Completos - Passo a Passo - CLIQUE AQUI
Objetivo:
Continuar o desenvolvimento do sistema para gerenciar imóveis para locação, iremos criar o banco de dados para armazenar os registros e também codificaremos a interface empresa, tudo de forma simples e direta para seu melhor entendimento.
Pré-requisito:
Para você poder acompanhar o desenvolvimento deste tutorial, será necessário ter conhecimento no mínimo do “Curso Básico de Excel e os Tutoriais Utilizando Editor do Visual Basic do Excel Parte 1 e Parte2” Parte 1 deste tutorial.
Ola! Pessoal, para o desenvolvimento deste banco utilizaremos a Plan1, modifique o nome para a “EMPRESA”, depois inserira na primeira linha os nomes dos campos relacionados logo abaixo.
COD, NOME, CNPJ, IE, ENDERECO,TELEFONE, FAX, EMAIL e CEP.
Tela 001
Insira cor cinza, negrito e centralizado, isso na primeira linha de cada coluna.
Tela 002
Faça algumas alterações nos campos, conforme descrição abaixo.
COD, CNPJ e IE colocar na categoria “número”.
Tela 003
NOME, ENDERECO e EMAIL inserir na categoria “texto”.
Tela 004
TELEFONE e EMAIL inserir na categoria Especial + Telefone.
Tela 005
CEP inserir na categoria Especial + Cep
Tela 006
Começaremos a codificar a interface empresa, insira o código abaixo no formulário dentro do evento initialize.
Label_n = Application.WorksheetFunction.CountA(Plan1.Columns(1)) – 1
Tela 007
Os próximos códigos a devem ser inseridos dentro do evento clic do botão.
Botão Incluir:
Dim bd As Database
Dim Rs As Recordset
Set bd = OpenDatabase(ThisWorkbook.Path & "\" & ThisWorkbook.Name, False, False, "excel 8.0")
Set Rs = bd.OpenRecordset("EMPRESA$", dbOpenDynaset)
If Me.Text_cod > Me.Label_n Then
If Me.Text_cod = "" Then
Me.Text_cod = "-"
End If
If Me.nome = "" Then
Me.nome.Text = "-"
End If
If Me.cnpj = "" Then
Me.cnpj.Text = "-"
End If
If Me.ie = "" Then
Me.ie.Text = "-"
End If
If Me.endereco = "" Then
Me.endereco.Text = "-"
End If
If Me.telefone = "" Then
Me.telefone.Text = "-"
End If
If Me.fax = "" Then
Me.fax.Text = "-"
End If
If Me.email = "" Then
Me.email.Text = "-"
End If
If Me.cep = "" Then
Me.cep.Text = "-"
End If
Dim CADASTRO(1 To 10)
CADASTRO(1) = UCase(Me.Text_cod)
CADASTRO(2) = UCase(Me.nome)
CADASTRO(3) = UCase(Me.cnpj)
CADASTRO(4) = UCase(Me.ie)
CADASTRO(5) = UCase(Me.endereco)
CADASTRO(6) = UCase(Me.telefone)
CADASTRO(7) = UCase(Me.fax)
CADASTRO(8) = UCase(Me.email)
CADASTRO(9) = UCase(Me.cep)
CADASTRO(10) = UCase(Me.Text_cod.Value)
Dim imovel As Object
Dim L, i
Set imovel = Plan1.Cells(1, 1).CurrentRegion
L = imovel.Rows.Count + 1
If Len(Me.Text_cod) = 0 Then
MsgBox "VOCÊ NÃO DIGITOU NENHUM NOME PARA INCLUSÃO", vbCritical, "CADASTRO DE CLIENTES"
Else
For i = 1 To 10
Plan1.Cells(L, i).Value = Trim(CADASTRO(i))
Next i
Me.Text_cod.Text = ""
Me.nome.Text = ""
Me.cnpj.Text = ""
Me.ie.Text = ""
Me.endereco.Text = ""
Me.telefone.Text = ""
Me.fax.Text = ""
Me.email.Text = ""
Me.cep.Text = ""
MsgBox "CADASTRADO", vbInformation, "EFETUADO COM SUCESSO"
ThisWorkbook.Save
End If
Exit Sub
Else
MsgBox "No campo COD digite um número maior do que há no campo Total Registro para casdastrar."
End If
Botão Pesquisar:
Dim bd As Database
Dim Rs As Recordset
Dim LIN
Set bd = OpenDatabase(ThisWorkbook.Path & "\" & ThisWorkbook.Name, False, False, "excel 8.0")
Set Rs = bd.OpenRecordset("EMPRESA$", dbOpenDynaset)
LIN = 2
Do Until Rs.EOF
If Rs("NOME") = Me.nome.Text Then
Me.Text_cod = Rs.Fields("COD")
Me.cnpj = Rs.Fields("CNPJ")
Me.ie = Rs.Fields("IE")
Me.endereco = Rs.Fields("ENDERECO")
Me.telefone = Rs.Fields("TELEFONE")
Me.fax = Rs.Fields("FAX")
Me.email = Rs.Fields("EMAIL")
Me.cep = Rs.Fields("CEP")
Me.TextBox_codf.Text = LIN
End If
LIN = LIN + 1
Rs.MoveNext
Loop
Botão Editar:
Dim CADASTRO(2 To 10)
CADASTRO(2) = UCase(Me.nome)
CADASTRO(3) = UCase(Me.cnpj)
CADASTRO(4) = UCase(Me.ie)
CADASTRO(5) = UCase(Me.endereco)
CADASTRO(6) = UCase(Me.telefone)
CADASTRO(7) = UCase(Me.fax)
CADASTRO(8) = UCase(Me.email)
CADASTRO(9) = UCase(Me.cep)
CADASTRO(10) = UCase(Me.TextBox_codf.Value)
For i = 2 To 10
Plan1.Cells(Val(Me.Text_cod) + 1, i).Value = Trim(CADASTRO(i))
Next i
MsgBox "ALTERAÇÃO EFETUADA", vbInformation, "DOS DADOS"
ThisWorkbook.Save
Botão Apagar:
Dim imovel
imovel = MsgBox("DESEJA REALMENTE EXCLUIR?", vbYesNo + vbQuestion, "BANCO DE DADOS")
If imovel = vbYes Then
Plan1.Cells(Me.TextBox_codf, 1).EntireRow.Delete
Me.Text_cod.Text = ""
Me.nome.Text = ""
Me.cnpj.Text = ""
Me.ie.Text = ""
Me.endereco.Text = ""
Me.telefone.Text = ""
Me.fax.Text = ""
Me.email.Text = ""
Me.cep.Text = ""
MsgBox "REGISTROS EXCLUÍDO COM SUCESSO."
ThisWorkbook.Save
End If
Botão Voltar:
Me.hide
Nesta parte criarmos o banco de dados para armazenar os registros, você fez as formatações necessárias nos campos e a codificação da interface “EMPRESA”, tudo de forma simples e objetiva, na próxima parte do tutorial daremos continuidade no desenlvovimento do sistema. Bons estudos e até a próxima parte.
Contato: Telefone: (51) 3717-3796 | E-mail: webmaster@juliobattisti.com.br | Whatsapp: (51) 99627-3434
Júlio Battisti Livros e Cursos Ltda | CNPJ: 08.916.484/0001-25 | Rua Vereador Ivo Cláudio Weigel, 537 - Universitário, Santa Cruz do Sul/RS, CEP: 96816-208
Todos os direitos reservados, Júlio Battisti 2001-2024 ®
LIVRO: MACROS E PROGRAMAÇÃO VBA NO EXCEL 2016 - CURSO COMPLETO E PRÁTICO
DOMINE A PROGRAMAÇÃO VBA NO EXCEL - 878 PÁGINAS - CLIQUE AQUI