我正在我的 Inno Setup 安装程序中进行验证,以检查机器上是否安装了 Microsoft 更新,如果没有,我将显示一个简单的消息框,告诉用户需要更新,这是消息代码:
MsgBox(
'Your system requires an update supplied by Microsoft. ' +
'Please follow this link to install it: ' +
'http://www.microsoft.com/downloads/details.aspx?FamilyID=1B0BFB35-C252-43CC-8A2A-6A64D6AC4670&displaylang=en',
mbInformation, MB_OK);
我想让 URL 成为网页的超链接,但我无法弄清楚如何在 Inno Setup 中将文本添加为超链接?
谢谢。