Modify Window Values - Modify Window Values - AnyDoc - CAPTUREit - AnyDoc/CAPTUREit/Foundation-23.1/CAPTUREit/VBScript/VBScript-Examples/OnPromptingControl-Examples/Modify-Window-Values - Foundation 23.1 - Foundation 23.1

CAPTUREit

Platform
AnyDoc
Product
CAPTUREit
Release
Foundation 23.1
License
ft:lastPublication
2023-11-17T13:17:46.194000
ft:locale
en-US

With PromptingControlDialog

For i = 1 To .Count

.Line(i).Prompt = "This is your new Prompt dude"

.Line(i).Mask = "AAA"

.Line(i).Value = "TEST VALUE"

Next

End With

‘ alternative method to modify the prompting control dialog prompts

with PromptingControlDialog

nIndex = .GetLineIndex(“Prompt1”)

.Line(nIndex).Prompt = “This is Prompt ID Prompt1”

End With