Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / Windows Forms / WinForm Data Binding / May 2006

Tip: Looking for answers? Try searching our database.

combobox datasource

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Alejandro González - 25 May 2006 21:48 GMT
Hi

I have a combobox binded to a Datatable
something like

combo.DataSource = dt.DefaultView;
combo.DisplayMember = "descField";
combo.ValueMember = "valueField";

it works fine.
Now if I update the datatable I want the combo to reflect those changes.

I'm trying to rebind the combo doing the same 3 lines but it doesn't work,
(the second time the is run then it does the 1st update)

Any help?
thanks
JT - 31 May 2006 04:45 GMT
Hi,
Try binding the selected value of your combobox the column in the datatable
whose changes you want reflected in your control.

ComboBox1.DataBindings.Add _
      (New Binding("SelectedValue", myDataSet,
"myDataTable.myDataColumnName"))

Also, when binding a combobox, set the display and value members BEFORE
setting the dataSource.  This prevents a firing of the selectedIndex changed
event and gives a performance boost.

JT

Signature

John

> Hi
>
[quoted text clipped - 13 lines]
> Any help?
> thanks

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.