Ver Mensaje Individual
  #4 (permalink)  
Antiguo 28/10/2008, 09:36
Avellaneda
Colaborador
 
Fecha de Ingreso: enero-2008
Ubicación: Unas veces aquí, otras veces allí
Mensajes: 1.482
Antigüedad: 17 años, 3 meses
Puntos: 37
Respuesta: Como hacer para completar msflexigrid

Cita:
Iniciado por gasafonso Ver Mensaje
Cada uno en cada columna , e ir agregando a medidas que cargas los textbox a continuacion de los cargados anteriormente


gracias
Código:
Private Sub Command1_Click()
MSFlexGrid1.AddItem Text1 & vbTab & Text2 & vbTab & Text3 & vbTab & Text4
End Sub

Private Sub Form_Load()
With MSFlexGrid1
    .Cols = 4
    .Rows = 1
    .FixedCols = 0
    .TextMatrix(0, 0) = "Col1"
    .TextMatrix(0, 1) = "Col2"
    .TextMatrix(0, 2) = "Col3"
    .TextMatrix(0, 3) = "Col4"
End With

End Sub