Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
public class ComboItemEx
{
private String m_name;
private int m_value;
public ComboItemEx(String name, int value)
{
m_name = name;
m_value = value;
}
' add your properties here
' Name, Value
public override String ToString()
{
return m_name;
}
}
MyComboBox.Add(New ComboItemEx("foo", 41));
MyComboBox.Add(New ComboItemEx("bar", 123));
int ZeeValue = MyComboBox.SelectedItem.Value;