This is a simple bit of code that obtains the phone numbers from a database and places them in a combo box. With your example it sounds like you would just use some labels and fill the caption with the records you require.
Dim VodaDB As Database
Dim VodaRS As DAO.Recordset
Private Sub GetPhoneNumbers()
Dim PhoneNumbers() As String
Dim PhoneNumbersEN As Integer
Dim FoundRecords As Boolean
PhoneNumbersEN = 0
FoundRecords = False
Set VodaDB = DBEngine(0).OpenDatabase("c:\voda\d2210f0t.mdb"
Set VodaRS = VodaDB.OpenRecordset("SELECT CTN FROM CTN"
Do While Not VodaRS.EOF
ReDim Preserve PhoneNumbers(PhoneNumbersEN)
PhoneNumbers(PhoneNumbersEN) = VodaRS!CTN
PhoneNumbersEN = PhoneNumbersEN + 1
FoundRecords = True
VodaRS.MoveNext
Loop
ComboBox1.List = PhoneNumbers()
End Sub
You have to make sure the DAO object library is loaded in word to make this work. It is under Tools-References in VB Editor.
If you require anymore assistance I would be happy to help.