passar esses registros de uma tabela para outra, a idéia é reciclar garde bin eu apaguei registros no lixo antes de retirar completamente. em seguida, passar alguns campos câmaras para outra mesa ou forma como o trabalho cego em formas, e se eu quiser restaurá-lo de volta para passar a mesa era. obrigado antecipadamente.
4 participantes
[Resolvido]passar esses registros de uma tabela para outra (pass those records from one table to another)
Zeusangel- Intermediário
- Respeito às regras :
Sexo :
Localização :
Mensagens : 72
Registrado : 07/11/2011
- Mensagem nº1
passar esses registros de uma tabela para outra (pass those records from one table to another)
Avelino Sampaio- Developer
- Respeito às regras :
Sexo :
Localização :
Mensagens : 3900
Registrado : 04/04/2010
- Mensagem nº2
Re: [Resolvido]passar esses registros de uma tabela para outra (pass those records from one table to another)
Hi Zeus
The translation was not good. Write in English that will be easier to understand.
The translation was not good. Write in English that will be easier to understand.
.................................................................................
Vídeos, livros, kit MontaRibbons e acesso vitalício ao site UsandoAcces
Clique AQUI e analise o custo beneficio do material oferecido.
Zeusangel- Intermediário
- Respeito às regras :
Sexo :
Localização :
Mensagens : 72
Registrado : 07/11/2011
- Mensagem nº3
Ok Im sorry
ok if I have two tables and I think everyone forms but one I will serve as papeliria recycling, as step one record to another table then if I want. it happened again where it was in the original table in advance many thanks
Zeusangel- Intermediário
- Respeito às regras :
Sexo :
Localização :
Mensagens : 72
Registrado : 07/11/2011
- Mensagem nº4
otra vez
no se si me entiendan pero traduci lo que dije creo que tampoco van a enterner talvez en español si, que es algo igual al portugues, tengo dos tablas con sus dos formularios
uno me servira como papeleria de reciclaje , como hago para pasar los registro a la otra tabla , y cuando quiera regreso ese mismo registro a donde pertenecia ? mil gracias
uno me servira como papeleria de reciclaje , como hago para pasar los registro a la otra tabla , y cuando quiera regreso ese mismo registro a donde pertenecia ? mil gracias
criquio- Moderador Global
- Respeito às regras :
Sexo :
Localização :
Mensagens : 11229
Registrado : 30/12/2009
- Mensagem nº5
Re: [Resolvido]passar esses registros de uma tabela para outra (pass those records from one table to another)
Hi Miguel! Well, Spanish is not so similar to Portuguese. I am Brazilian and I find it more easier to understand English than Spanish.
You want to transfer data from one table to another, right? You may use the object "Recordset". Let´s suppose the two tables are named tbl1 and tbl2 respectively. Let´s suppose both them have the same field names. In my example I will name them fld1, fld2 and fld3. Because of you have two tables, let´s use two "Recordsets":
In this case, I am supposing you have a field in a form where you would enter the ID of the record you want to transfer. Once I don´t know how you modelled your database, I can´t be more specific but I think the block of code above may help you anyway.
You want to transfer data from one table to another, right? You may use the object "Recordset". Let´s suppose the two tables are named tbl1 and tbl2 respectively. Let´s suppose both them have the same field names. In my example I will name them fld1, fld2 and fld3. Because of you have two tables, let´s use two "Recordsets":
- Código:
Dim myTable1 As Recordset, myTable2 As Recordset
Set myTable1 = CurrentDb.OpenRecordset("SELECT * FROM tbl1 WHERE IDField=" & Me.IDField & "")
Set myTable2 = CurrentDb.OpenRecordset("tbl2")
tbl2.AddNew
tbl2!fld1 = tbl1!fld1
tbl2!fld2 = tbl1!fld2
tbl2!fld3 = tbl1!fld3
tbl2.Update
tbl2.Close
Set tbl2 = Nothing
tbl1.Close
Set tbl1 = Nothing
In this case, I am supposing you have a field in a form where you would enter the ID of the record you want to transfer. Once I don´t know how you modelled your database, I can´t be more specific but I think the block of code above may help you anyway.
.................................................................................
Meu novo site: www.vcssistemas.com.br Clique aqui e veja um vídeo que explica como fazer pesquisas no forum. DICA: Quando precisar inserir um exemplo do seu aplicativo, siga os procedimentos abaixo: 1 - faça uma cópia do aplicativo 2 - retire tudo que não for necessário à solução do problema, exceto o que o aplicativo precisar para funcionar 3 - use o Compactar/Reparar 4 - compacte o aplicativo em zip ou rar (zip para postagem como anexo na mensagem) Agradeça a quem lhe ajudou, clicando no joinha de uma das mensagens do usuário. Positive as mensagens que achar útil, no canto superior direito delas. |
Zeusangel- Intermediário
- Respeito às regras :
Sexo :
Localização :
Mensagens : 72
Registrado : 07/11/2011
- Mensagem nº6
thanks
if I want to move the record in the table 1 to table 2, since the two tables have the same one that is empty which is Table 2, and this is the table that I serve as recycling stationery like windows when want to restore the back, so that whenever in Table 2 retake this same record to table1, but too much to ask can I make file example. Thanks for your attention to my problem
Zeusangel- Intermediário
- Respeito às regras :
Sexo :
Localização :
Mensagens : 72
Registrado : 07/11/2011
- Mensagem nº7
Fields?
thanks for code but I have a doubt field1, field2 field3, is declared or the number of fields and field names in this select
SELECT [Project]. [Id], [Project]. [Id], [Project]. [Nompro] FROM Projects ORDER BY [Project]. [Id];
see if you give me a little example of an Access file I'd appreciate it thanks
SELECT [Project]. [Id], [Project]. [Id], [Project]. [Nompro] FROM Projects ORDER BY [Project]. [Id];
see if you give me a little example of an Access file I'd appreciate it thanks
Zeusangel- Intermediário
- Respeito às regras :
Sexo :
Localização :
Mensagens : 72
Registrado : 07/11/2011
- Mensagem nº8
I run the code but..........
sorry but if I worked buenisimo copying code from table 1 to table2 buenisimo, now I wonder when copying unregister the table1, because I have it copied to table2, then serve me again step the same record that is copied in the table1 table2 but here's one thing that will be no problem to pass the table1 again because it is a primary key will not create duplicate numbers? , Put this code to make clear the log that was left in the table1 but I only ejeucta not delete the code you gave me to copy and again thank you for your attention
On Error GoTo Err_BtnBorrar_Click
Exit_BtnBorrar_Click:
Exit Sub
Err_BtnBorrar_Click:
MsgBox Err.Description
Resume Exit_BtnBorrar_Click
On Error GoTo Err_BtnBorrar_Click
Exit_BtnBorrar_Click:
Exit Sub
Err_BtnBorrar_Click:
MsgBox Err.Description
Resume Exit_BtnBorrar_Click
criquio- Moderador Global
- Respeito às regras :
Sexo :
Localização :
Mensagens : 11229
Registrado : 30/12/2009
- Mensagem nº9
Re: [Resolvido]passar esses registros de uma tabela para outra (pass those records from one table to another)
You may do the same. Just inverse myTable1 and myTable2 or you may have two combobox named cboOrigin and cboTarget for example. These two combobox may be filled with the names of the tables so you choose the "from path" and the "to path". Or you may have two radio buttons labeled "From table 1 to table 2" and "From table 2 to table 1". Many ways for the same goal.
.................................................................................
Meu novo site: www.vcssistemas.com.br Clique aqui e veja um vídeo que explica como fazer pesquisas no forum. DICA: Quando precisar inserir um exemplo do seu aplicativo, siga os procedimentos abaixo: 1 - faça uma cópia do aplicativo 2 - retire tudo que não for necessário à solução do problema, exceto o que o aplicativo precisar para funcionar 3 - use o Compactar/Reparar 4 - compacte o aplicativo em zip ou rar (zip para postagem como anexo na mensagem) Agradeça a quem lhe ajudou, clicando no joinha de uma das mensagens do usuário. Positive as mensagens que achar útil, no canto superior direito delas. |
JPaulo- Moderador
- Respeito às regras :
Sexo :
Localização :
Mensagens : 11026
Registrado : 04/11/2009
- Mensagem nº10
Re: [Resolvido]passar esses registros de uma tabela para outra (pass those records from one table to another)
Hi all;
See this sample, transfer from table1 to table2;
http://dl.dropbox.com/u/771097/ListBox_Table1_to_Table2.rar
See this sample, transfer from table1 to table2;
http://dl.dropbox.com/u/771097/ListBox_Table1_to_Table2.rar
.................................................................................
Contribua com o maximoaccess nos links abaixo, ajude a melhorar este que é o seu site na NET.
Pay-Pal R$ Aqui
Pay-Pal € Aqui
Ou ainda: Aqui (Novo)
Sucesso e Bons Estudos
Success and Good Studies
Utilize o Sistema de Busca do Fórum...
102 Códigos VBA Gratuitos...
Instruções SQL como utilizar...
Zeusangel- Intermediário
- Respeito às regras :
Sexo :
Localização :
Mensagens : 72
Registrado : 07/11/2011
- Mensagem nº11
Re: [Resolvido]passar esses registros de uma tabela para outra (pass those records from one table to another)
ok thanks to all this is how I stay, someone interested in a recycling bin made in access, give them their pincelasos yet but that is a matter whoever wants, but the function is already done, is I thank you once again my respects teachers always learning more with you.
Nota:first eliminate empleoados records recycling then go to the registry will be there disposed of employees, if employees want restaurlo close button and recycling recycling, recycling close, and employees view your record again this restored
Tema resuelto [center]
Nota:first eliminate empleoados records recycling then go to the registry will be there disposed of employees, if employees want restaurlo close button and recycling recycling, recycling close, and employees view your record again this restored
Tema resuelto [center]
- Anexos
- papelera reciclaje.zip
- Você não tem permissão para fazer download dos arquivos anexados.
- (189 Kb) Baixado 24 vez(es)
JPaulo- Moderador
- Respeito às regras :
Sexo :
Localização :
Mensagens : 11026
Registrado : 04/11/2009
- Mensagem nº12
Re: [Resolvido]passar esses registros de uma tabela para outra (pass those records from one table to another)
Thanks for the feedback.
Many thanks
Many thanks
.................................................................................
Contribua com o maximoaccess nos links abaixo, ajude a melhorar este que é o seu site na NET.
Pay-Pal R$ Aqui
Pay-Pal € Aqui
Ou ainda: Aqui (Novo)
Sucesso e Bons Estudos
Success and Good Studies
Utilize o Sistema de Busca do Fórum...
102 Códigos VBA Gratuitos...
Instruções SQL como utilizar...
Conteúdo patrocinado
- Mensagem nº13
Re: [Resolvido]passar esses registros de uma tabela para outra (pass those records from one table to another)
» [Resolvido]Excluir registros de uma tabela, mas que fosse transferida para outra tabela no mesmo BD
» [Resolvido]Como passar dados de uma tabela para outra
» [Resolvido]formulario continuo passar registos para outra tabela
» [Resolvido]Copiar registros excluídos de um subformulário para outra tabela
» Transferindo Registros de uma tabela para outra
» [Resolvido]Como passar dados de uma tabela para outra
» [Resolvido]formulario continuo passar registos para outra tabela
» [Resolvido]Copiar registros excluídos de um subformulário para outra tabela
» Transferindo Registros de uma tabela para outra