I'm beginning to think that the developers of VB2005 were on A-class drugs at the time!
I've been writing software for many years and until now, never had to ask for help.
Now, even the most simple tasks are infuriating! (Read my other posts)
Here's my next problem:
I have a form with a BindingNavigator, BindingSource and BindingTableAdapter bound to the "Customers" table of my database, a BindingSource and BindingTableAdapter bound to the "CustomerCars" table of my database which is filtered to show only the records relevant to the current customer and a ComboBox from hell bound to the CustomerCarsBindingSource to list the registration numbers of the relevant cars.
Everything works fine and the ComboBox lists the relevant cars however, when I select another item in the ComboBox and change the CustomerCarsBindingSource.Position to show the details of the associated car, the Combobox does weird things eg:
Original list = CARS 001, CARS 002, CARS 003
After selecting CARS 002:
List = CARS 002, CARS 002, CARS 003
After selecting CARS 003:
List = CARS 002, CARS 003, CARS 003
Why is this? Please somebody either tell me how to resolve this or tell me that the developers have been arrested, either would make me very happy.