Link to home
Start Free TrialLog in
Avatar of ARACK04
ARACK04

asked on

databinding

I'm reading someone elses code, and I came across the following segment, renamed for clarity

        ComboBoxA.DataSource = myDataSet;
        ComboBoxA.DisplayMember = "t.blah";
        ComboBoxA.DataBindings.Add("Text", myDataSet, "t.blah");

don't the last two lines of this accomplish the same thing, and if not, what is the purpose of the line:
         ComboBoxA.DataBindings.Add("Text", myDataSet, "t.blah")
ASKER CERTIFIED SOLUTION
Avatar of Ravi Singh
Ravi Singh
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial