Replied in the Controls newsgroup, please do not multi-post.

Signature
Manohar Kamath
Editor, .netWire
www.dotnetwire.com
> Anybody knows how to bind enumerated type to a data bound combo box?
> I tried this:
> this.comboBox1.DataSource = Enum.GetValues(typeof(CheckType));
this.comboBox1.DataBindings.Add("SelectedItem",this.objtest.Tables["Attribut
e"],"CheckType");
> When i navigate records the combo didnt reflect the value from the table
> Any suggestions?