Copying fields from one table to another 
Author Message
 Copying fields from one table to another

Has anyone got any suggestions

I have two tables table1 and table2

Form1 is based on table1.

I want a command button on the form that takes two of the values from the
current record (say forename and surname) on Form1 and adds them to table2
(places them in the fields oldforename and oldsurname)

Many thanks in advance

Gary H
--
visit www.ponsanooth.org.uk or www.falmouthcc.org.uk



Mon, 02 Aug 2004 13:48:01 GMT  
 Copying fields from one table to another
Put this code into your command button

Dim strForeName as String, strSurName as String
strForeName = Me!tbx_forename    'textbox with forename
strSurName = Me!tbx_surname    'textbox with surname
DBEngine(0)(0).Execute "INSERT INTO Table2 ( oldforename , oldsurname)
SELECT '" & strForeName  & "' AS Expr1, '" & strSurName  & "' AS Expr2;"

With this methode you paste the values of those fields into Table2, but are
you sure you want to do that ?
Would this duplicate information in your DB ?

Kind regards
Hans-Christian Francke
www.master-office.com



Quote:
> Has anyone got any suggestions

> I have two tables table1 and table2

> Form1 is based on table1.

> I want a command button on the form that takes two of the values from the
> current record (say forename and surname) on Form1 and adds them to table2
> (places them in the fields oldforename and oldsurname)

> Many thanks in advance

> Gary H
> --
> visit www.ponsanooth.org.uk or www.falmouthcc.org.uk



Mon, 02 Aug 2004 16:17:02 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. Help Help Need to copy a field from one table into another table

2. Fill field in one table from field in another table

3. How to copying from one DB table to another DB table

4. Copying the structure of one Access table to a new Access table

5. Copy/Saving a recordset from one data table to another table

6. Copy fields from record in table A to record in table B using VBA

7. Subtracting qty from a field on one table from qty used on another table

8. SQL - Join one table in one destination to another table in another destination (DBF)

9. Copying tables from one database to another

10. Copying data from one table to another

11. copying data from one table to another

12. Two problems with copying tables from one database to another

 

 
Powered by phpBB® Forum Software