1

I want to change one error message. After not typing a password the error message says:

The password you entered is not correct. Please try again.

I want to use my own custom message and include clickable hyperlink in it.

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992
Michael
  • 13
  • 2

1 Answers1

0

A custom message text is easy. Set IncorrectPassword message in the [Messages] section:

[Messages]
IncorrectPassword=That is not the correct password, dude.

A custom message dialog with a clickable hyperlink is a lot more work. You would have to implement the validation on your own, creating the dialog programmatically.

Easier would be to add your hyperlink directly to the wizard password page.

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992