On 9/16/08 3:49 PM, "Philip Usher" <[EMAIL PROTECTED]> wrote:
> Is it possible to use revMoveFolder to move a folder to the Recylcle
> Bin in Windows XP and what would the destination folder path be?
I don't think you can use revMoveFolder, but you can run this VBScript using
"do <script> as VBScript" from Rev 2.9 or higher:
Const RECYCLE_BIN = &Ha&
Const FILE_TO_MOVE = "C:\yourFileGoesHere.txt"
Set objShell = CreateObject("Shell.Application")
Set recycleFolder = objShell.NameSpace(RECYCLE_BIN)
recycleFolder.MoveHere FILE_TO_MOVE
result = Err.Number
HTH,
Ken Ray
Sons of Thunder Software, Inc.
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.com/
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution