Kelly,
Here is a sample of what I use to import all text from autocad to access directly. You can change the paameters to look for attribute block with specific titles. I call this function thru a loop to import over 1000 drawings.
Function Transfer_ACText_To_Access(sDwg As String, sLoc As String, Min As Integer, Max As Integer)
Dim value As Object
Dim rst As New Recordset
'Dim insertionPoint(0 To 2) As Variable
Dim currInsertionPoint As Variant
rst.Open "tblData", CurrentProject.Connection, adOpenStatic, adLockOptimistic
Set AC = Nothing
On Error Resume Next
Set AC = GetObject(, "AutoCAD.Application"

If Err <> 0 Then
Set AC = CreateObject("AutoCAD.Application"

MsgBox "You have to open a dwg. file in AutoCad " & _
"first and let the commandline stay empty"
Exit Function
End If
AC.Visible = False
Set doc = AC.ActiveDocument
Set mspace = doc.ModelSpace
For Each value In mspace
With value
If StrComp(.EntityName, "AcDbMText", 1) = 0 Or StrComp(.EntityName, "AcDbText", 1) = 0 Then
'Selection.TypeText Text:=.TextString This is for word
'Selection.TypeParagraph
If Len(.TextString) >= Min And Len(.TextString) <= Max Then
currInsertionPoint = .insertionPoint
rst.AddNew
rst.Fields("Data"

= .TextString
rst.Fields("Layer"

= .Layer
rst.Fields("Color"

= .Color
rst.Update
rst.MoveNext
End If
End If
End With
Next value
rst.Close
value = Nothing
Set AC = Nothing
'MsgBox "Finished"
End Function
Praxden