Hi Tony
I've just ran through the steps you've listed (also found here
http://msdn2.microsoft.com/en-us/library/0f92s97z(VS.80).aspx) and I've had
no problems.
Are you sure that the database you connect to when checking the changed
values, is the same one you connected to from Visual Studio ?
(You can check the database settings in the App.Config file)
That's the only reason I can think of that would produce the results you are
seeing.

Signature
Ged Moretta
www.appsense.com
-----------------------------------------------------------------------
This signature isn't automatic. I have to type it manually every time.
> Hello!
>
[quoted text clipped - 74 lines]
>
> //Tony
TonyJ - 23 Oct 2007 09:46 GMT
Hello!
I found my problem.
When I created the connection to the database I was asked if I wanted to
copy the database file to my project.
Here I answered Yes. The default settings for the copied database into my
project was copy always.
Copy always mean that a copy is made from the project root directory to the
output bin directory everytime you run the program.
This means that I really changed my database in the output bin dirctory but
when I ran the applictiopn for the second time the database from the project
root directory was copied to my output bin directory overwriting my changes.
//Tony
> Hi Tony
>
[quoted text clipped - 54 lines]
> > this.Validate();
> > this.customersBindingSource.EndEdit();
this.customersTableAdapter.Update(this.northwindDataSet.Customers);
> > MessageBox.Show("Update successful");
> > }
[quoted text clipped - 27 lines]
> >
> > //Tony