Thread: C#
View Single Post
thEsp
BANNED
Join Date: Aug 2017
Old 01-30-2020 , 15:04   Re: C#
Reply With Quote #2

Code:
if (CB.Items[CB.SelectedIndex] == "...")
{
    // ...
}
else if (CB.Items[CB.SelectedIndex] == "...2")
{
   // ...
}
I think it should be like this called on ComboBox.OnSelectedIndexChanged, haven't worked in C# for some good months?

Last edited by thEsp; 01-30-2020 at 15:13.
thEsp is offline