Datagrid vb.net

miss unknown -  
 miss unknown -
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
Configuration: Windows XP
Internet Explorer 7.0

1 réponse

  1. miss unknown
     
    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