Search code examples
inno-setuppascalscript

Hide URL from Inno Setup download page


I would like to hide the URL from which the files are being downloaded.

I can't find this information.

Any hints of doing this?

Message label to be hidden


Solution

  • Move the Msg2Label label from the page's client area:

    DownloadPage.Msg2Label.Top := ScaleY(-100);
    

    (thanks to @MDenis for correction)


    Note that this won't prevent people from finding the URL from where you are downloading the files.