Binding
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
Hello, I am trying to bind a specific column to a specific control. The problem is that when the combo box control appears blank when I try to bind a column to this control, but if I bind the column to a text box, then it displays the correct value of that column. pbndtemp = New Binding("Text", ds, "schedule_detail.Expr1") Me.cboTrainingProgress.DataBindings.Add(pbndtemp) pbndtemp = New Binding("Text", ds, "schedule_detail.Expr1") Me.txtProgress.DataBindings.Add(pbndtemp) Do I need to evaluate or validate the combo box binding? If so, how do I do that? Thanks, Jay Feng Screwed... the art of moving to a new place because the old place is just too messy and not worth the effort to clean.