or
cbStatus.ValueMember = "value";cbStatus.DataSource = GetStatusCodes(); //Gets data from a data tablecbStatus.AutoSizeDropDownToBestFit = true;//BindingcbStatus.DataBindings.Clear();cbStatus.DataBindings.Add("SelectedValue", bs, "status");//I've tried all the below code and it doesn't change my combox selected row or value//((RadGridView)this.cbStatus.EditorControl).Rows[2].IsSelected = true;//((RadGridView)this.cbStatus.EditorControl).CurrentColumn = ((RadGridView)this.cbStatus.EditorControl).Columns[0]; //((DataTable)bs.DataSource).Rows[bs.Position]["status"] = "02";///cbStatus.SelectedIndex = 2;When I add a watch on the below lines I get "01" and "Complete". It should change to "02" and "Working"((RadGridView)this.cbStatus.EditorControl).CurrentRow.Cells[0].Value "01" object {string}((RadGridView)this.cbStatus.EditorControl).CurrentRow.Cells[1].Value "Complete" object {string}



this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.MaximizeBox = false;
this.MinimizeBox = false;
Size = new Size(422, 433);
Assistant.CenterFormOnScreen(this);
this.Text = "Aqua Theme";
Also not the circle on the left is gray and the Aqua theme makes it red with an x when you mouse over it.
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
Size = new Size(422, 433);
Assistant.CenterFormOnScreen(this);
this.Text = "Aqua Theme";
It is an MDI application and these are pop up forms.
Can someone tell me if this is normal or what other settings am I missing.
Thanks
Chom
