Do you want it to save to the DataTable (in memory on the machine the app is running on) , or the server?
If you mean the DataTable, and the DataGridView is bound to the table, it is happening automatically, you're just not seeing it. You can see this by calling GetChanges() on the datatable in the DataGridView's RowLeave event.
However, I'm guessing you REALLY mean you want to save it back tothe source database. if I'm guessing right, see this post: http://social.msdn.microsoft.com/Forums/en/vbide/thread/5f8741dc-5874-46e7-8665-6bda3674bafd
Edit - added based on comments
There are a few things to check and try.
First, just for fun, instead of EditOnEnter, set the EditMode to EditOnKeystroke.
Also check to ensure that the .Enabled property is set to true, and that it's not inside another control (such as a Panel) that has .Enabled set to false.
Also, ensure the ReadOnly property is set to false .
Also, CanFocus needs to be set to true.
Most of the things I listed are the default settings, so look for settings in the Properties pane that are bolded, which indicates that they are not the default property value.