|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
DataGridView1 (VS2005)find on this subject. But obviously I am not see the hole picture. I am trying to update a data base using the DataGridView. The DataGridView displays the data correctly when the program is run. I am able to change the data in a cell but when I reload the data base the changes were never updated. DataGridView.DataSource = GroupDataBindingSource DataGridView.EditMode = EditOnEnter DataGridView.ColumnsReadOnly = False The following is the code I am using to save the data: Private Sub SaveGroupData() Try Me.Validate() Me.GroupDataBindingSource.EndEdit() 'This line of code saves data into the Group_DBDataSet.Group_Data' table. Me.Group_DataTableAdapter.Update(Me.Group_DBDataSet.Group_Data) Catch ex As Exception Dim msg As String msg = " Sub SaveGroupData " & vbCrLf & vbCrLf MsgBox(msg & ex.ToString) ' Show friendly error message. Finally End Try End Sub Any help will be appreicated
Show quote
Hide quote
On Sun, 19 Nov 2006 21:52:56 -0800, "vbt" <tb***@cwnet.com> wrote: Running & reloading from where?>I am new to using the DataGridView and I have read most everything I can >find on this subject. But obviously I am not see the hole picture. > > > >I am trying to update a data base using the DataGridView. > > > >The DataGridView displays the data correctly when the program is run. I am >able to change the data in a cell but when I reload the data base the >changes were never updated. > > > >DataGridView.DataSource = GroupDataBindingSource > >DataGridView.EditMode = EditOnEnter > >DataGridView.ColumnsReadOnly = False > > > >The following is the code I am using to save the data: > > > >Private Sub SaveGroupData() > > Try > > Me.Validate() > > Me.GroupDataBindingSource.EndEdit() > > 'This line of code saves data into the >Group_DBDataSet.Group_Data' table. > > Me.Group_DataTableAdapter.Update(Me.Group_DBDataSet.Group_Data) > > > > Catch ex As Exception > > Dim msg As String > > msg = " Sub SaveGroupData " & vbCrLf & vbCrLf > > MsgBox(msg & ex.ToString) ' Show friendly error message. > > > > Finally > > > > End Try > > > > End Sub > > > > > >Any help will be appreicated > Try running and reloading from a release build and see what happens. Gene Hi,
If you see the database in the solution explorer make sure its copy to output property is set to only if newer Ken -------------------------- Show quoteHide quote "vbt" <tb***@cwnet.com> wrote in message news:OMuXhgGDHHA.992@TK2MSFTNGP03.phx.gbl... >I am new to using the DataGridView and I have read most everything I can >find on this subject. But obviously I am not see the hole picture. > > > > I am trying to update a data base using the DataGridView. > > > > The DataGridView displays the data correctly when the program is run. I am > able to change the data in a cell but when I reload the data base the > changes were never updated. > > > > DataGridView.DataSource = GroupDataBindingSource > > DataGridView.EditMode = EditOnEnter > > DataGridView.ColumnsReadOnly = False > > > > The following is the code I am using to save the data: > > > > Private Sub SaveGroupData() > > Try > > Me.Validate() > > Me.GroupDataBindingSource.EndEdit() > > 'This line of code saves data into the > Group_DBDataSet.Group_Data' table. > > > Me.Group_DataTableAdapter.Update(Me.Group_DBDataSet.Group_Data) > > > > Catch ex As Exception > > Dim msg As String > > msg = " Sub SaveGroupData " & vbCrLf & vbCrLf > > MsgBox(msg & ex.ToString) ' Show friendly error message. > > > > Finally > > > > End Try > > > > End Sub > > > > > > Any help will be appreicated > >
While not starting a debate BUT
How to declare a sub class thread dead lock Passing multiple arguments to the client-side JavaScript function in AJAX textbox help VB2005 Replace " character in string Save Changes in VB.NET 2005 with Access 2003 --- Not using any Binding Navigator textbox.backgroundImage ConfigurationManager unrecognized vb2005 express textbox control |
|||||||||||||||||||||||