|
-
Nov 19th, 1999, 01:50 PM
#1
Thread Starter
Fanatic Member
I think that topic explains everything.
Thanks in advance
------------------
Visual Basic Programmer (at least I want to be one)
------------------
PolComSoft
You will hear a lot about it.
-
Nov 19th, 1999, 04:59 PM
#2
So Unbanned
just use a file box make the extension = *.* or if you want commondialog do the same....
hopes this helps
------------------
DiGiTaIErRoR
-
Nov 19th, 1999, 05:54 PM
#3
-
Nov 20th, 1999, 12:06 PM
#4
Alternatively you can use the Dir Function, eg.
Code:
Private Sub Command1_Click()
Dim sDir As String
sDir = Dir("C:\Files\*")
While Len(sDir)
List1.AddItem sDir
sDir = Dir
Wend
End Sub
------------------
Aaron Young
Analyst Programmer
[email protected]
[email protected]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|