Forms VisualBasic Script

Sub DirDemo()
  Dim FType As String
  FType = "*.xls"
  MsgBox Dir(FType)
  
End Sub