4

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

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992
Kattabomane
  • 124
  • 11

1 Answers1

5

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.

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992