अपने दैनिक जीवन मे प्रोगामिग सम्बंधी जो समस्या, वो क्या है कैसे हुई और मै ने उसका क्या समाधान किया |
Sunday, July 10, 2011
How to get file list in a folder?
Option Explicit
Private Sub Command1_Click()
Dim strFile
strFile = Dir$(App.Path & "\*.*", vbNormal)
Do While strFile <> vbNullString
Debug.Print strFile
strFile = Dir$()
Loop
End Sub
No comments:
Post a Comment