Kattabomane
Kattabomane

Reputation: 124

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

Upvotes: 4

Views: 388

Answers (1)

Martin Prikryl
Martin Prikryl

Reputation: 202642

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.

Upvotes: 5

Related Questions