Thread: Recordset merge
View Single Post
  #2  
Old March 26th, 2010, 05:17 PM posted to microsoft.public.access
Scafidel[_3_]
external usenet poster
 
Posts: 11
Default Recordset merge

I found it. I was closing my RS twice. Remarked one out and it runs good.
Thanks for looking.
--
Lafayette, LA


"Scafidel" wrote:

I am merging from an Access 2007 Form/subforms to a bookmarked Word document.
I am able to use .MoveNext to merge the recordsets, but get an error if
there are less records.
The DAO Library is referenced, I've tried this code, but now only the first
record is merged and the fields of the recordsets of the form are replaced
with #Name? (Fortunately, rebooting Access returns the recordset fields to
former state). Any suggestions?

Dim db As DAO.Database
Dim rs As DAO.Recordset
Set db = CurrentDb
Set rs = Forms("OGML").qryMineralOwnersub.Form.Recordset

rs.MoveFirst
InsertAtBookmarks objWord, objDoc, "Owners1", rs!MineralOwner

If Not (rs.BOF And rs.EOF) Then
GoTo Exit_here
rs.MoveNext
End If
InsertAtBookmarks objWord, objDoc, "Owners2", rs!MineralOwner
--
Lafayette, LA