Ver Mensaje Individual
  #13 (permalink)  
Antiguo 23/04/2010, 01:35
Avatar de Sergio18
Sergio18
 
Fecha de Ingreso: abril-2010
Ubicación: No quieras saberlo
Mensajes: 94
Antigüedad: 15 años
Puntos: 0
Respuesta: Editar msflexgrid con un formulario

Ya esta:

Código vb:
Ver original
  1. Private Sub Command5_Click()
  2. Set cnPrueba = New Connection
  3. 'Establecer sus propiedades
  4.     With cnPrueba
  5.         .Provider = "Microsoft.Jet.oledb.4.0"
  6.         .ConnectionString = "prueba.mdb"
  7.      End With
  8.     cnPrueba.Open
  9. Set rsTbl_Direccion = New Recordset
  10. 'Establecer sus propiedades
  11. With rsTbl_Direccion
  12.     .CursorLocation = adUseClient
  13.     cnPrueba.Execute "UPDATE tbl_direccion SET nombre='" & Text1 & "', apellidos='" & Text4 & "',direccion='" & Text5 & "',ciudad='" & Combo1 & "',provincia='" & Combo2 & "',telefono='" & Text2 & "',cp='" & Text6 & "' Where id  = " & Text3 & ""
  14.     .ActiveConnection = cnPrueba
  15.     .LockType = adLockOptimistic
  16. End With
  17. With rsTbl_Direccion
  18.     MSFlexGrid1.TextMatrix(MSFlexGrid1.Row, 1) = Form1.Text1.Text
  19.     MSFlexGrid1.TextMatrix(MSFlexGrid1.Row, 2) = Form1.Text4.Text
  20.     MSFlexGrid1.TextMatrix(MSFlexGrid1.Row, 3) = Form1.Text5.Text
  21.     MSFlexGrid1.TextMatrix(MSFlexGrid1.Row, 4) = Form1.Combo1.Text
  22.     MSFlexGrid1.TextMatrix(MSFlexGrid1.Row, 5) = Form1.Combo2.Text
  23.     MSFlexGrid1.TextMatrix(MSFlexGrid1.Row, 6) = Form1.Text2.Text
  24.     MSFlexGrid1.TextMatrix(MSFlexGrid1.Row, 7) = Form1.Text6.Text
  25. End With
  26. End Sub

La culpa fue mia no sabia que tambien tenia que añadir el id en el formulario, muchas gracias y saludos