Ver Mensaje Individual
  #3 (permalink)  
Antiguo 22/04/2010, 08:13
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

Hola SalomonSab gracias por contestar, he estado investigando mas y me han dicho que es con un insert into, lo tengo echo asi:

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.     .Open "insert into tbl_direccion (Nombre,Apellidos,Direccion,Ciudad,Provincia,Telefono,CP) values('" & _
  14.     Text1.Text & "','" & _
  15.     Text4.Text & "','" & _
  16.     Text5.Text & "','" & _
  17.     Combo1.Text & "','" & _
  18.     Combo2.Text & "','" & _
  19.     Text2.Text & "','" & _
  20.     Text6.Text & "')", cnPrueba, adOpenDynamic, adLockOptimistic
  21. End With
  22. With rsTbl_Direccion
  23.     MSFlexGrid1.TextMatrix(MSFlexGrid1.Row, 1) = Form1.Text1.Text
  24.     MSFlexGrid1.TextMatrix(MSFlexGrid1.Row, 2) = Form1.Text4.Text
  25.     MSFlexGrid1.TextMatrix(MSFlexGrid1.Row, 3) = Form1.Text5.Text
  26.     MSFlexGrid1.TextMatrix(MSFlexGrid1.Row, 4) = Form1.Combo1.Text
  27.     MSFlexGrid1.TextMatrix(MSFlexGrid1.Row, 5) = Form1.Combo2.Text
  28.     MSFlexGrid1.TextMatrix(MSFlexGrid1.Row, 6) = Form1.Text2.Text
  29.     MSFlexGrid1.TextMatrix(MSFlexGrid1.Row, 7) = Form1.Text6.Text
  30. End With
  31. End Sub

Pero hay un problema, en modo ejecucion si me edita el felxgrid pero cuando salgo y vuelvo a entrar se me ha añadido una fila que es la que he editado y lo que iva a editar se queda igual que antes de editarlo

Saludos