In order for the Verify button to be displayed in the Indexing dialog box to enable manual Keyword validation in the OnBase Client, a proper VB script must be configured to run on the client workstation. For more information on configuring VB scripts, see the Automation API documentation.
A sample script is shown below:
' button:Verify
Sub Main35()
dim obapp
set obapp = CreateObject("onbase.application")
dim keypanel
set keypanel = obapp.IndexKeywordPanel
keypanel.DoVerb "Meditech Verify"
set keypanel = Nothing
set obapp = Nothing
End Sub