Combobox databindings property

kekinlim

Member
Joined
Jan 12, 2005
Messages
10
Programming Experience
Beginner
Hi...

Can anyone tell me what do the following databindings property of a combobox means?

SelectedItem
SelectedValue
Tag
Text

All these are found in the property box of combobox during design time. I cannot find the definition anywhere on the internet. Thank you.
 
SelectedItem = the item that has been selected by the use
SelectedValue = the value of the selected item (comboboxes can hold key/value pairs)
Tag = a tag, you can use this for recognizing the combobox
Text = the visible text to start with (or reset to)

TPM
 
Back
Top