I notice from exploring the MediaMonkey type library that there is a ISDBApplication.WebControl property in RC3, which returns an instance of WebBrowser.
How do you get the browser to display?

Set WB = SDB.WebControl
WB.Navigate "http://www.steegy.be"Sub OnStartup
Set Tree = SDB.MainTree
Set Node = Tree.CreateNode
Node.Caption = "Test Web"
Node.IconIndex = 0
Script.RegisterEvent Node, "OnNodeFocused", "NodeFocus"
Script.RegisterEvent Tree.Node_Artist, "OnNodeFocused", "NodeFocus"
Tree.AddNode Tree.Node_Artist, Node, 1 ' Insert after the node
Node.HasChildren = True
End Sub
Function NodeFocus( Node)
NodeFocus = 2
SDB.WebControl.Navigate "http://www.mediamonkey.com"
End Function


Sub OnStartupUsers browsing this forum: Bing [Bot] and 11 guests