30.11.07

Common Craft - Blogs in Plain English

The folks over at Common Craft are at it again. Here's a nice clean way to explain to the uninitiated what a blog is and why they should care:

14.11.07

Binding multiple controls to the same DataSource has Selection side effects

As the title would suggest, I recently ran across selection side effects, when I had a ListBox and a ComboBox bound to the same DataSource (a BindingSource). Selecting an item in the ListBox would select an item in the ComboBox and vice versa.  This brought on a whole slew of unanticipated and unwanted behavior.

After reading this VB programmer's post, I was enlightened. Its not a bug, it functions as designed. I just need a separate DataSource for each different control.

Case closed. Problem solved. Solution logged.