Is it possible to change the window title bar of your installer using Inno Setup?

前端 未结 6 1005
日久生厌
日久生厌 2021-02-14 08:56

Is it possible to change the title bar of your installer using Inno Setup?

By default is:

AppName=My Program

and when you run the setup

6条回答
  •  孤街浪徒
    2021-02-14 09:09

    You should be able to do that using Pascal scripting. Inno Setup allows you to call SendMessage and PostMessage from your Pascal section. Try to use that to send a WM_SETTEXT message to your window.

提交回复
热议问题