A family of Microsoft word processing software products for creating web, email, and print documents.
You'll need to adapt this for Word. I've written it for PowerPoint.
Sub TestTxtToCbo()
Dim cbo As Object
Set cbo = ActivePresentation.Slides(1).Shapes(1).OLEFormat.Object
TxtToCbo cbo, "c:\temp\test.txt"
End Sub
Sub TxtToCbo(cbo As Object, sFileName As String)
' Pass a reference to the combo in the cbo object variable
' and the full path to your text file in sFileName
Dim iNotesFileNum As Integer
Dim sBuf As String
' is it there? quit if not
If Len(Dir$(sFileName)) = 0 Then
MsgBox sFileName & " is missing"
Exit Sub
End If
' open the file and go to work
iNotesFileNum = FreeFile()
Open sFileName For Input As iNotesFileNum
While Not EOF(iNotesFileNum)
Line Input #iNotesFileNum, sBuf
cbo.AddItem (sBuf)
Wend
' close the file
Close iNotesFileNum
End Sub