hi cvboad,
ok, u need to create a form and insert the similar code behind that button.
------------------------------
dim db as database
dim str as String
dim rst1 as Recordset
dim rst2 as Recordset
str = " select field1, field2, field3 from Budget"
set rst1 = db.openRecordSet(str)
str = " select field1, field2, field3 from Order"
set rst2 = db.openRecordSet(str)
rst1.moveFirst
Do until rst1.EOF
rst2.addnew
rst2.field(1) = rst1.field(1)
rst2.field(2) = rst1.field(2)
rst2.field(3) = rst1.field(3)
rst2.update
rst1.movenext
loop
rst1.close
rst2.close
set rst1 = Nothing
set rst2 = Nothing
--------------------------------------------
Regards,
Umer