INCLUINDO DADOS

ROBSONSLZ 01/08/2010 16:26:50
#349094
A Quem puder me ajudar...
Vejamos:

No BD tem duas tabela: TabClientes - TabCadastro

Agora... Como faço para incluir na segunda tabela os restantes dos dados
efetuado pela Pesquisa?

Em Anexo um projeto pronto, apenas faltando incluir rotinas para ser jogando na segunda tabela.

Grato,
MOREIRA 01/08/2010 17:14:56
#349097
Resposta escolhida
olá robson.... no botão novo voce coloca...

Sql = [Ô]Insert Into Tbl_Corretor (Cpf, Corretor, Rg, Endereco, Compl, Cidade, Bairro,[Ô]
Sql = Sql & [Ô]Fone1, Fone2, Email, Banco, Agencia, Tipo_Conta, Num_Conta, Dt_Cadastro)[Ô]
[ô]->
Sql = Sql & [Ô]Values ([Ô]
[ô]->
Sql = Sql & [Ô][ô][Ô] & TxtCpf.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtCorretor.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtRg.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtEndereco.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtCompl.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtCidade.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtBairro.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtFone1.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtFone2.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtEmail.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtBanco.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtAgencia.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & CboTipo.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtNum_Conta.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & Format(Date, [Ô]yyyy/mm/dd[Ô]) & [Ô][ô])[Ô]
MsgBox ([Ô]Dados Gravado com Sucesso[Ô]), vbExclamation, [Ô]ATENÇAO[Ô]
Conexao.Execute Sql

obs: altere na sua necessidade..




ROBSONSLZ 01/08/2010 20:03:30
#349100
Citação:

:
olá robson.... no botão novo voce coloca...

Sql = [Ô]Insert Into Tbl_Corretor (Cpf, Corretor, Rg, Endereco, Compl, Cidade, Bairro,[Ô]
Sql = Sql & [Ô]Fone1, Fone2, Email, Banco, Agencia, Tipo_Conta, Num_Conta, Dt_Cadastro)[Ô]
[ô]->
Sql = Sql & [Ô]Values ([Ô]
[ô]->
Sql = Sql & [Ô][ô][Ô] & TxtCpf.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtCorretor.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtRg.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtEndereco.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtCompl.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtCidade.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtBairro.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtFone1.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtFone2.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtEmail.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtBanco.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtAgencia.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & CboTipo.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & TxtNum_Conta.Text & [Ô][ô],[Ô]
Sql = Sql & [Ô][ô][Ô] & Format(Date, [Ô]yyyy/mm/dd[Ô]) & [Ô][ô])[Ô]
MsgBox ([Ô]Dados Gravado com Sucesso[Ô]), vbExclamation, [Ô]ATENÇAO[Ô]
Conexao.Execute Sql

obs: altere na sua necessidade..






Ok! Moreira,

Vou testar...

Tem como me passar do EXCLUIR - CANCELAR?

Grato,
MOREIRA 01/08/2010 21:07:53
#349102
excluir...Private Sub Cmd3_Click()
On Error GoTo Trataerro
Dim Rst As New ADODB.Recordset
If TxtCpf.Text <> [Ô][Ô] Then
If MsgBox([Ô]Tem Certeza que Deseja Excluir[Ô] & Chr(13) & [Ô]O Cliente(a) --->> [Ô] & TxtCliente.Text & [Ô] ?[Ô], vbYesNo, [Ô]Atenção[Ô]) = vbYes Then
Set Rst = New ADODB.Recordset
Sql = [Ô]Delete From Tbl_Contratos Where Id_Contrato =[ô][Ô] & LblId_Contrato.Caption & [Ô][ô][Ô]
Rst.Open Sql, Conexao
MsgBox [Ô]Cadastro Excluido com Sucesso![Ô], vbExclamation, [Ô]ATENÇÃO[Ô]
End If
Else
MsgBox [Ô]Nao Existe Tarefa Para Excluir![Ô], vbExclamation, [Ô]ATENÇÃO[Ô]
End If
Exit Sub
Trataerro:
MsgBox Err.Description, vbCritical, [Ô]Erro no Sistema[Ô]
End Sub
ROBSONSLZ 02/08/2010 19:24:29
#349219
Citação:

:
excluir...Private Sub Cmd3_Click()
On Error GoTo Trataerro
Dim Rst As New ADODB.Recordset
If TxtCpf.Text <> [Ô][Ô] Then
If MsgBox([Ô]Tem Certeza que Deseja Excluir[Ô] & Chr(13) & [Ô]O Cliente(a) --->> [Ô] & TxtCliente.Text & [Ô] ?[Ô], vbYesNo, [Ô]Atenção[Ô]) = vbYes Then
Set Rst = New ADODB.Recordset
Sql = [Ô]Delete From Tbl_Contratos Where Id_Contrato =[ô][Ô] & LblId_Contrato.Caption & [Ô][ô][Ô]
Rst.Open Sql, Conexao
MsgBox [Ô]Cadastro Excluido com Sucesso![Ô], vbExclamation, [Ô]ATENÇÃO[Ô]
End If
Else
MsgBox [Ô]Nao Existe Tarefa Para Excluir![Ô], vbExclamation, [Ô]ATENÇÃO[Ô]
End If
Exit Sub
Trataerro:
MsgBox Err.Description, vbCritical, [Ô]Erro no Sistema[Ô]
End Sub



Wlw! Moreira, Obrigado pelo apoio...
Tópico encerrado , respostas não são mais permitidas