OnReadData
The OnReadData event occurs whenever data is successfully retrieved from a database by an RFgen application. This event is typically used to force an immediate repaint of the screen to display all linked prompts values to the user.
Group: Events
Applies to: Application
Syntax: OnReadData(TableName)
TableName (String) is the name of the table that was successfully queried.
Example:
Public Sub Form_OnReadData(TableName As String)
On Error Resume Next
Screen.Refresh ' Repaint the current screen
End Sub