This is what I have so fat I believe I am missing something though. I get a compile error(user defined type not found error) on the dim db as database statement can you clairify this for me?
Thanks for the resonse I believe I am close...
Jim
'First, create a query that selects all records from the foreign database table (we'll call it Expired):
'SELECT * FROM Expired IN "C:\lddata\ExpiredCauseDB.mdb";
'Save the query (we'll call it ExpiredQry).
'Next, in VBA code in the form where you want to export the current record, do the following:
Dim db As Database
Dim rst As Recordset
' Open the foreign table
Set db = CurrentDb("C:\lddata\ExpiredCauseDB.mdb"

Set rst = db.OpenRecordset(qryEpireddb)
' Add a new record to the foreign table, move the
' fields from the current record on the form to
' the foreign table and save the row
rst.AddNew
rst![Item] = Me.[Item]
rst![Decription] = Me.[Decription]
rst![WHSE] = Me.[WHSE]
rst![Month] = Me.[Month]
rst![Cause] = Me.[Cause]
rst![Expired] = Me.[Expired]
rst! [Serial Lot] = Me.[Serial Lot]
rst![QTY] = Me.[QTY]
rst![Amount] = Me.[Amount]
rst![Storage Code] = Me.[Storage Code]
rst![NOD] = Me.[NOD]
rst![IPF Code] = Me.[IPF Code]
rst![IPF Desc] = Me.[IPF Desc]
rst![Storage Desc] = Me.[Storage Desc]
rst![Primary] = Me.[Primary]
rst![Primary Desc] = Me.[Primary Desc]
rst![Second] = Me.[Second]
rst![Second Desc] = Me.[Second Desc]
rst![Third] = Me.[Third]
rst![Third Desc] = Me.[Third Desc]
rst![Buyer Code] = Me.[Buyer Code]
rst![Vendor Number] = Me.[Vendor Number]
rst![Full Product Type] = Me.[Full Product Type]
rst.Update
' Close the foreign database
rst.Close
Set db = Nothing
Exit_paste_append_Click:
Exit Sub
Err_paste_append_Click:
MsgBox Err.Description
Resume Exit_paste_append_Click
End Sub