Key VB Script Features Demonstrated in this Script: - CAPTUREit - Foundation 23.1 - Foundation 23.1 - AnyDoc - external - AnyDoc/CAPTUREit/Foundation-23.1/CAPTUREit/VBScript/VBScript-Examples/Create-Populated-Drop-Down-Lists-for-Scan-Prompts/Key-VB-Script-Features-Demonstrated-in-this-Script - 2023-11-17

CAPTUREit

Platform
AnyDoc
Product
CAPTUREit
Release
Foundation 23.1
License
  • PromptingControlDialog Object (CAPTUREit).

    • .line(#) object (CAPTUREit)

      Corresponds to the number of the prompting control from OCRAD. Since there are three prompts in this example (Division, Department, and Cost Center Number), Division is .line(1), Department is .line(2), and Cost Center Number is .line(3).

      .AddValue

      Plugs in a value into the line object.

      .Hidden

      Keeps the line object hidden until needed.

    • .DoModal()

      Displays the prompting dialog.

    • .ModalResult

      Can be vbOK or vbCancel. It is the result of the DoModal method.

    • .Title

      Title to display on the prompting dialog.

    • .ClearAllLists

      Clears the value of all drop down lists.

  • ADO Connection to Table (VB Script)