StatusDialog
Applies to
VAccess
Description
Invoking this method will display a task-modal message box at run time if set to a non-zero number. Common PSQL status codes are explained, less common or unrecognized status codes are simply reported.
Syntax
object.StatusDialog [status]
The syntax for this method has the following parts:
 
Example
If stat = 0 Then
Text1.Text = VAccess1.FieldValue("msa_desc")
Text2.Text = _
VAccess1.GetFieldValue("population", "##,###,###")
Text3.Text = VAccess1.FieldValue(2)
Else
VAccess1.StatusDialog stat
End If