|
-
Jun 17th, 2002, 05:34 PM
#1
Thread Starter
New Member
-
Jun 17th, 2002, 05:45 PM
#2
Frenzied Member
Huh... it's been done, sorry 
http://www.rjlsoftware.com/default.shtml
Anyway, you'd use something like this:
VB Code:
Dim Temp As String
Temp = Dir("")
Do
'Show the user that we're deleting the file Temp :)
Temp = Dir()
Loop While Temp <> ""
I don't know if that works. Also don't ask how, read something on the Dir function
-
Jun 17th, 2002, 10:44 PM
#3
Thread Starter
New Member
Could you elaborate a little?
Ok that seems to make sense but I modified it and I only got one file to show.DATAVIEW.DLL .How would you slow it down? And I want the path too...
Preferably not a timer.
-
Jun 17th, 2002, 11:09 PM
#4
Add a DoEvents after you change the caption.
As an aside, someone paid $23 earlier today on RentACoder to find out why their form wouldnt respond while processing a large amount of data in a loop =). I bid $4 (minimum)... Dont know what the guy was thinking...
Z.
-
Jun 18th, 2002, 08:18 PM
#5
Thread Starter
New Member
DoEvents??
Typed it in like this:
Private Sub form_load()
Dim Temp As String
Temp = Dir("")
Do
Label1.Caption = Temp
DoEvents
Temp = Dir()
Loop While Temp <> ""
End Sub
Now I've got COMCTL32.oca
That fakeformats good but I want another style in it. Thanx anywayz
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
|