Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/03/2007, 20:13
EMILIO_2007
 
Fecha de Ingreso: febrero-2007
Mensajes: 12
Antigüedad: 18 años, 2 meses
Puntos: 0
Re: Seleccionar fila de mshflex

Private Sub Form_Load()
MSFlexGrid1.ColWidth(0) = 200
MSFlexGrid1.ColWidth(1) = 3700

For X = 1 To 8
MSFlexGrid1.TextMatrix(X, 1) = X
Next
End Sub


Private Sub MSFlexGrid1_Click()
Text1.Text = MSFlexGrid1.TextMatrix(MSFlexGrid1.Row, 1)
End Sub