Just use the Dir function:
[tt]
Dim strText As String
strText = Dir("c:\mydir\*.txt")
If Len(strText) > 0 Then
Combo1.AddItem strText
Do
strText = Dir
Debug.Print strText
Combo1.AddItem strText
Loop While Len(strText) > 0
End If
[/tt]
________________________________________________________________
If you want to get the best response to a question, please check out FAQ222-2244 first
'If we're supposed to work in Hex, why have we only got A fingers?'