Can anyone tell me whats wrong with my code?
First List box:
Rem Initialize List Box
ListBox.ResetContent()
Rem Add Strings here as needed
ListBox.AddString("Cast-in")
ListBox.AddString("Post-installed")
Rem Initialize Selection If desired
ListBox.CurSel = 0
Sub ListBoxEvent_Start()
End Sub...