Filecopy with the SHFileOperation API

Please can someone point me to how I can trigger the explorer file copy progress from C# ?

I'm looking to have a progressbar triggered on filecopy drag drop.

Thanks !

[186 byte] By [Ultrawhack] at [2007-12-25]
# 1
you would have to create your own progress bar for this and customize the UI. I'm not aware of an API that calls the explorer style file copy progress bar.
ahmedilyas at 2007-8-31 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...
# 2

I found this

http://msdn.microsoft.com/msdnmag/issues/05/02/NETMatters/

but am not able to get it to work... I posted a separate thread

http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=800116&SiteID=1

Ultrawhack at 2007-8-31 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...
# 3
They goofed, it is:
new Microsoft.VisualBasic.Devices.ServerComputer().
FileSystem.CopyFile(...);

nobugz at 2007-8-31 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...