Examples: Changed property


The following example displays a message containing the date and time when a line in a sales transaction record was changed. This information could also be added to the DUOS or to another database (such as Microsoft Access) and stored with the transaction record:

Private Sub Grid_AfterLineChange()
	If SalesTransactionEntryDetail.Changed Then
		MsgBox "This item changed on " & Date & " at " & Time & "."
	End If
End Sub


Documentation Feedback