Hi there,
How too use ShowCheckListBox?
Dim List As New List(Of String)
List.Add("Value")
List.Add("Value2")
Dim List2 As New List(Of Boolean)
List.Add(True)
List.Add(False)
Dim b() As Boolean = Rhino.UI.Dialogs.ShowCheckListBox("Title", "Message", List, List2)
I’m running this obove. But nothing happens. What am I doing wrong here?
Cheers.