NOTAS DE RECUERDOS
Private Sub Form_Load()
DataGrid1.MarqueeStyle = dbgFloatingEditor
END SUB
Private Sub DataGrid1_RowColChange(LastRow As Variant, ByVal LastCol As Integer)
If Not IsNull(LastRow) Then
DataGrid1.EditActive = True
DataGrid1.SelStart = 0
DataGrid1.SelLength = Len(DataGrid1.Columns(DataGrid1.Col).Text)
End If
End Sub