ISDBApplicationEvents::OnDownloadFinished

From MediaMonkey Wiki
Revision as of 08:21, 8 June 2010 by Ludek (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

CoClass SDBApplication, Interface ISDBApplicationEvents

Sub OnDownloadFinished(URL As String)


Parameters

Name Type Description
URL String URL of file that has been just downloaded


Event description

Is called whenever a file download finishes.

Example code

Sub OnStartUp()    
    Script.RegisterEvent SDB, "OnDownloadFinished", "SDBDownloadFinished"
End Sub

Sub SDBDownloadFinished( URL)
    MsgBox("Download has finished for the URL:"&URL)
End Sub