I'm surprised you get as far as the last line. What is CurrentProject in
your Word application?
You don't need to instantiate an Access application to use ADO to read a
database. Try just something like this ..
Set cnn = New ADODB.Connection
Set cmd = New ADODB.Command
Set rst = New ADODB.Recordset
cnn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Persist Security Info=False;"User ID=Admin;" & _
"Data Source=" & "PUTR.mdb"
cmd.CommandText = "Select * from ReadyList;"
cmd.ActiveConnection = cnn
Set rst = cmd.Execute

Signature
Enjoy,
Tony
> Hi,
> I'm having trouble opening a recordset in Word VBA to use Access data in a
[quoted text clipped - 19 lines]
> I can see, this ought to work, but I can't see what's wrong. If anybody
> could point out the obvious for me, I'd really appreciate it.
pacmedtran - 23 Oct 2007 18:49 GMT
That did the trick. Thanks so much.
> I'm surprised you get as far as the last line. What is CurrentProject in
> your Word application?
[quoted text clipped - 38 lines]
> > I can see, this ought to work, but I can't see what's wrong. If anybody
> > could point out the obvious for me, I'd really appreciate it.