Hi,
I using successfully the Windows Gadget Platform to copy files or folders in VBA using code similar to this:
'******************************
' Copy folder using windows shell interface
Set TagetFolder as Variat


TargetFolder = "D:\Target"
Set objShell = CreateObject("Shell.Application")
Set objFolder = objShell.NameSpace(TargetFolder)
objFolder.CopyHere "D:\Source",&H0&

'******************************

I want to delete a folder with the same nice process bar displayed by the Windows Gadget Platform.
I was trying of using System.Shell.RecycleBin.deleteItem but nothing seems to work.
Any ideas how to use this command?

Thanks,
Ronen