I am using a datagrid MSFlexGrid on a form. the FlexGrid displays several columns including a column that takes the "last update" date directly from the Access database's properties:
Me.msflexGrid.TextMatrix(irow, 3) = .TableDefs(i).LastUpdated
when I make changes to the database using the datagrid which is bound to the database, I want the date to be changed. How can I force the properties of the database to update the date using VB?
Me.msflexGrid.TextMatrix(irow, 3) = .TableDefs(i).LastUpdated
when I make changes to the database using the datagrid which is bound to the database, I want the date to be changed. How can I force the properties of the database to update the date using VB?