Example - Application Enabler - Foundation 23.1 - Foundation 23.1 - Ready - OnBase - Premier - external - Standard - Essential - Premier - Standard - Essential - OnBase/Application-Enabler/Foundation-23.1/Application-Enabler/Pre-Process-Scripting-for-Advanced-Parsing/Using-Pre-Process-Scripts/DDE-Pre-Process-Scripting/Example - 2024-08-01

Application Enabler

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

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