On Jun 19, 12:29*pm, Cdude <camelj...@yahoo.com> wrote:
> Please can anyone tell me how to display the valuemember of a combobox
> which is databound I have tried
> MessageBox.Show(Combobox1.ValueMember.ToString()) this displays the
> Column name to which the valuemember is databound.
ComboBox.SelectedItem
ComboBox.SelectedText
ComboBox.SelectedIndex
ComboBox.SelectedValue
One or combination of the above will solve your issue. For the return
values checkout MSDN Documentation at
http://msdn.microsoft.com/en-us/libr...x_members.aspx
-Cnu.