如何在 Inno Setup 中修改錯誤信息? (How to modify error message in Inno Setup?)


問題描述

如何在 Inno Setup 中修改錯誤信息? (How to modify error message in Inno Setup?)

我想更改一條錯誤消息。未輸入密碼後,錯誤消息顯示:

您輸入的密碼不正確。請再試一次。

我想使用我自己的自定義消息並在其中包含可點擊的超鏈接。


參考解法

方法 1:

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.

(by MichaelMartin Prikryl)

參考文件

  1. How to modify error message in Inno Setup? (CC BY‑SA 2.5/3.0/4.0)

#inno-setup






相關問題

如何從 InitializeWizard 中更改嚮導頁面的名稱和描述? (How do I change the name and description of a wizard page from within InitializeWizard?)

如何使用 Inno Setup 根據註冊表項選擇在文件夾中安裝插件/文件? (How do I use Inno Setup to optionally install a plugin/file in a folder based on a registry entry?)

Inno Setup - 透明閃屏 (Inno Setup - Transparent Splash Screen)

Instal versi Firebird yang benar (32bit atau 64bit) dengan Inno Setup (Install correct version of Firebird (32bit or 64bit) with Inno Setup)

Inno Setup - 防止提取文件將進度條設置為 100% (Inno Setup - Prevent extraction of files from setting progress bar to 100%)

在安裝期間將 .INI 文件從 UTF-8 編碼轉換為 ANSI (To convert a .INI file from UTF-8 encoding to ANSI during installation)

將 Inno Setup 安裝程序包裝在 MSI 中以便通過 AD 進行分發是否可行/明智? (Is it feasible/sensible to wrap an Inno Setup installer inside an MSI for easier distribution via AD?)

在沒有 ClickOnce 的情況下從安裝程序下載並安裝 .net framework 4.0? (Download and install .net framework 4.0 from installer without ClickOnce?)

如何在 Inno Setup 中設置“典型”和“自定義”安裝選項? (How to make a "Typical" and "Custom" installation option in Inno Setup?)

Inno Setup Windows DLL 函數調用,帶有指向結構的指針 (Inno Setup Windows DLL function call with pointer to structure)

更改 WizardForm.TasksList 偏移量 (Change WizardForm.TasksList offset)

如何在 Inno Setup 中修改錯誤信息? (How to modify error message in Inno Setup?)







留言討論