Lol,
thats a little too easy. i want it to actualy (loosely) represent the file copying process, but thank you.
any other ideas?
Main Topics
Browse All TopicsRight, basically i've got a wee lil app to copy a folder and its sub folders etc. However when its used its gonna take upto 10minutes to complete so i want to show its progress in a progress bar.
Firstly, it dosent have to be deadly accurate. Eg it can be based on number of files copied so far, dosent need to be related to size (basically its just an indication to the user stuff is happening!)
The key thing here to remember is im using the fso "copyfolder".
Any help would be great
all i ask is please don't over complicate things or write out a whole load of code / application please :)
This is the button click event so far (well the relevant part of it)
Dim fso As Object
fso = CreateObject("Scripting.Fi
Dim fileCount As Integer = fso.GetFolder(txt1.Text).F
ProgressBar1.Maximum = fileCount
ProgressBar1.Minimum = 0
fso.CopyFolder(txt1.Text, txt2.Text)
ProgressBar1.Value THE BIT IM STUCK ON!
MessageBox.Show("Done", "Done")
ta
alec
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Use the My.Computer.FileSystem.Cop
http://msdn2.microsoft.com
My.Computer.FileSystem.Cop
This will show the default windows copy progress dialog as the operation is performed.
Business Accounts
Answer for Membership
by: jpaulinoPosted on 2007-09-22 at 09:28:58ID: 19941935
If you want a easy and quick soluction just set the property of the progressbar style to marquee in the beginning of your code.
jpaulino