data grid problems...please help

Please support our VB.NET advertiser: Intel Parallel Studio Home
Reply

Join Date: Oct 2005
Posts: 33
Reputation: SethR is an unknown quantity at this point 
Solved Threads: 1
SethR SethR is offline Offline
Light Poster

data grid problems...please help

 
0
  #1
Sep 21st, 2006
Why can't I get the changes in my grid to update the data base?

Here's the code..............


Public Class frmAddChangeDelete
Inherits System.Windows.Forms.Form
Dim currpath As String = System.Environment.CurrentDirectory
Dim connService As New System.Data.OleDb.OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; Data Source= " & currpath & "\ServiceCalls.mdb")
Private daCustomers
Private daCalls
Private daStatus



Private serviceDS As New DataSet




Private Sub frmAddChangeDelete_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim daCustomers As New System.Data.OleDb.OleDbDataAdapter("Select * from Customers", connService)
Dim daCalls As New System.Data.OleDb.OleDbDataAdapter("Select * from Calls", connService)
Dim daStatus As New System.Data.OleDb.OleDbDataAdapter("Select * from Status", connService)

daCustomers.Fill(serviceDS)
serviceDS.Tables(0).TableName = "Customers"
DataGrid1.DataSource = serviceDS.Tables("Customers")

daCalls.Fill(serviceDS)
serviceDS.Tables(1).TableName = "Calls"
DataGrid2.DataSource = serviceDS.Tables("Calls")

daStatus.Fill(serviceDS)
serviceDS.Tables(2).TableName = "Status"
DataGrid3.DataSource = serviceDS.Tables("Status")



DataGrid1.SetDataBinding(serviceDS, "Customers")


End Sub





Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click

Dim command_builder As New System.Data.OleDb.OleDbCommandBuilder(daCustomers)

Try
daCustomers.Update(serviceDS, "Customers")

Catch ex As Exception
MessageBox.Show(ex.Message)

End Try

















End Sub
End Class
Reply With Quote Quick reply to this message  
Join Date: Jun 2005
Posts: 1
Reputation: Baaskar R is an unknown quantity at this point 
Solved Threads: 0
Baaskar R Baaskar R is offline Offline
Newbie Poster

Re: data grid problems...please help

 
0
  #2
Sep 22nd, 2006
Hi,

There is no "Currpath" string in VB.NET, Instead try to give complete location of ServiceCalls.mdb database under 'Data Source'.
Reply With Quote Quick reply to this message  
Join Date: Oct 2005
Posts: 33
Reputation: SethR is an unknown quantity at this point 
Solved Threads: 1
SethR SethR is offline Offline
Light Poster

Re: data grid problems...please help

 
0
  #3
Sep 22nd, 2006
The currPath statement is working though. My datagrids are getting populated from the database. I'll try you're suggestion though.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC