Pherhaps an admin/moderator should post this where the c# template is?
slapout said:I know this isn't the proper place to ask VB.Net questions, but does every function in the plugin class have to explictly state which function it implements? (Like the Description function stating "Implements MediaPortal.GUI.Library.ISetupForm.Description")
Dim Men As MediaPortal.GUI.Library.GUIButtonControl
Dim Itm As MediaPortal.GUI.Library.GUIListItem
Dim x As Integer
Men = GetControl(24)
Men.Visible = True
MediaPortal.GUI.Library.GUIButtonControl.ClearControl(GetID, Men.GetID)
For x = 0 To 10
Itm = New MediaPortal.GUI.Library.GUIListItem("test" & x)
Men.AddSubItem(Itm)
Next
Itm = Men.GetSubItem(0)
MsgBox(Itm.Label)
Itm = Nothing
Men = Nothing