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