25/07/2011, 16:39
|
| | Fecha de Ingreso: julio-2011
Mensajes: 13
Antigüedad: 13 años, 3 meses Puntos: 0 | |
MSHFlexGrid y textbox ¿como hacer que pase datos del text al flex? hola
necesito que pase los datos que tengo en unos textbox al flex grid intento hacerlo con este codigo:
Dim y As String
If grid1.Rows < 2 Then
y = 1
End If
grid1.Rows = grid1.Rows + 1
grid1.TextMatrix(y, 0) = Text5
grid1.TextMatrix(y, 1) = Text2
grid1.TextMatrix(y, 2) = Text7
grid1.TextMatrix(y, 3) = Text4
grid1.TextMatrix(y, 4) = Text8
y = y + 1
Pero me da error: "error 381 en tiempo de ejecución subindice fuera del intervalo"
gracias por su tiempo y ayuda |