INTERACT FORUM

More => Old Versions => Media Center 11 (Development Ended) => Topic started by: mcbuilder on September 19, 2006, 02:02:30 am

Title: API SilentDelete function
Post by: mcbuilder on September 19, 2006, 02:02:30 am
Hi All,

I am trying to use the API to delete a file with the FileAutomation Object through VB6 (Out-Of-Process).

With file.DeleteFile (parent handle), the confirm box comes up as expected, however fileObj.SilentDeleteFile generates Out of Memory Error(7) everytime. Is there a specific way this function has to be used.

File Automation Object  . SilentDeleteFile()

Any help much appreciated.
Title: Re: API SilentDelete function
Post by: Matt on September 19, 2006, 11:25:18 am
Double-check that the Media Center.tlb file you're using is the latest one that's included with the build.
Title: Re: API SilentDelete function
Post by: samwin241 on September 20, 2006, 10:27:26 am
Same error here. Checked Media Center.tlb version is current, but SilentDeleteFile generates  Out of memory:

  ' attempt to delete missing files
        For i = 0 To numResults - 1
            Dim tfile As Object
            Dim FileName As String
           
            FileName = searchResults.Getfile(i).FileName
            Set tfile = myobj.Getfile(FileName)
           
           
            frmUpdate.listLog.AddItem "Removing.." & tfile.FileName
           
            Dim delresult As Boolean
           
             delresult = tfile.deletefile(frmMCControl.hWnd) <-- This code works
           ' delresult = tfile.SilentDeleteFile() <-- This generates above memory error
            If delresult <> False Then
                frmUpdate.listLog.AddItem "!!DELETED!!"
            Else
                frmUpdate.listLog.AddItem "NOT Deleted"

Any ideas?