Datagrid vb.net

Fermé
miss unknown - 26 nov. 2007 à 23:23
 miss unknown - 26 nov. 2007 à 23:33
Bonjour,
comment modifier la base de donné directement du datagrid en vb.net, svp repondez moi c'est urgent....
j'ai deja fait ce code:

Dim ligne As Integer = DataGrid1.CurrentRowIndex
command = New SqlCommand("update MaTable set champs1=" & DataGrid1(ligne, 0) & ",champs2='" & DataGrid1(ligne, 1) & "', adresse=' where champs1=" & DataGrid1(ligne, 0), cnx)
dta = New SqlDataAdapter(command)
Dim dts2 As New DataSet
dta.Fill(dts2, "MaTable")

si je mais ce code dans load ca marche pas, dans datagrid.textchanged ca marche pas, aidez moi, heelp

1 réponse

miss unknown
26 nov. 2007 à 23:33
comment modifier la base de donné directement du datagrid en vb.net, svp repondez moi c'est urgent....
j'ai deja fait ce code:

Dim ligne As Integer = DataGrid1.CurrentRowIndex
command = New SqlCommand("update MaTable set champs1=" & DataGrid1(ligne, 0) & ",champs2='" & DataGrid1(ligne, 1) & ' where champs1=" & DataGrid1(ligne, 0), cnx)
dta = New SqlDataAdapter(command)
Dim dts2 As New DataSet
dta.Fill(dts2, "MaTable")

si je mais ce code dans load ca marche pas, dans datagrid.textchanged ca marche pas, aidez moi, heelp


PS: voila mon code j'ai corrigé un truc
0