ISDBUICommon::DestroyControl: Difference between revisions

From MediaMonkey Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 6: Line 6:


{{Introduced|3.0}}
{{Introduced|3.0}}
Apparently this is ONLY for use with browser controls as used in [http://mediamonkey.com/wiki/index.php/Sample_AMG_Search_script|Sample AMG Search script].
All other requirements for removal of controls should use something like this
<source lang="vb">
Set Form1 = SDB.Objects("SyncTheSyncForm")
If Not (Form1 Is Nothing) Then
  Form1.Common.Visible = False
  Form1.Common.ControlName = ""
  Set SDB.Objects("SyncTheSyncForm") = Nothing
End If
</source>


[[Category:Scripting|{{PAGENAME}}]]
[[Category:Scripting|{{PAGENAME}}]]

Revision as of 02:47, 9 May 2008

CoClass SDBUICommon, Interface ISDBUICommon

Sub DestroyControl


Method description

This method destroys a control, it will be removed from UI, you should no longer access properties and methods of its COM object, because it would result in errors.

Introduced in MediaMonkey version 3.0.


Apparently this is ONLY for use with browser controls as used in AMG Search script.

All other requirements for removal of controls should use something like this

Set Form1 = SDB.Objects("SyncTheSyncForm")
If Not (Form1 Is Nothing) Then
  Form1.Common.Visible = False
  Form1.Common.ControlName = ""
  Set SDB.Objects("SyncTheSyncForm") = Nothing
End If