See the article "Access a database and insert into a Word document the data
that you find there" at:
http://www.word.mvps.org/FAQs/InterDev/GetDataFromDB.htm
Or, this is how you would populate a listbox (or combobox) with data from an
Access table:
Private Sub UserForm_Initialize()
Dim db As DAO.Database
Dim rs As DAO.Recordset
Dim NoOfRecords As Long
' Open the database
Set db = OpenDatabase("D:\Access\ResidencesXP.mdb")
' Retrieve the recordset
Set rs = db.OpenRecordset("SELECT * FROM Owners")
' Determine the number of retrieved records
With rs
.MoveLast
NoOfRecords = .RecordCount
.MoveFirst
End With
' Set the number of Columns = number of Fields in recordset
ListBox1.ColumnCount = rs.Fields.Count
' Load the ListBox with the retrieved records
ListBox1.Column = rs.GetRows(NoOfRecords)
' Cleanup
rs.Close
db.Close
Set rs = Nothing
Set db = Nothing
End Sub

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> Is it possible to send information from an access form to a Word VBA
> Userform
[quoted text clipped - 27 lines]
>
> Any assistance would be much appreciated
MPH2000 - 09 Nov 2007 12:37 GMT
This appears to be using word to obtain the information from Access is it
possible to use Access vba code to populate the word userform?
> See the article "Access a database and insert into a Word document the data
> that you find there" at:
[quoted text clipped - 83 lines]
> >
> > Any assistance would be much appreciated
Doug Robbins - Word MVP - 09 Nov 2007 21:03 GMT
To get assistance on that, it would be best to ask in an Access newsgroup,
but you should find some things
of interest of fellow Access MVP, Albert Kallal's website at:
http://www.members.shaw.ca/AlbertKallal/wordmerge/index.html

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> This appears to be using word to obtain the information from Access is it
> possible to use Access vba code to populate the word userform?
[quoted text clipped - 90 lines]
>> >
>> > Any assistance would be much appreciated