Example - Application Enabler - English - Foundation 22.1 - OnBase - Essential - Premier - Standard - external - Standard - Essential - Premier

Application Enabler

Platform
OnBase
Product
Application Enabler
Release
Foundation 22.1
License
Standard
Essential
Premier

An example of DDE scripting is where Application Enabler executes a VBScript after getting the contents of a Microsoft Word document. In this example, the name of the enabled application is winword.exe. Therefore, the name of the script file is winword.exe.aes.

The script file contains:

Function GetScreenContents(InputValue)

'MsgBox InputValue

GetScreenContents = InputValue

End Function

Function GetCursorRow(InputValue)

'MsgBox InputValue

GetCursorRow = 5

End Function

Function GetCursorColumn(InputValue)

'MsgBox InputValue

GetCursorColumn = 6

End Function