knowledge-database (beta)

Current group: jrsoftware.innosetup

How to hide filenames during install

How to hide filenames during install  
Maik Delitsch
 Re: How to hide filenames during install  
Gavin Lambert
From:Maik Delitsch
Subject:How to hide filenames during install
Date:Wed, 15 Dec 2004 08:22:36 +0100
Hi,

i need to hide the filenames, which are currently installed by the wizard.
How can i hide them? Is ther any flag or switch to turn them off and display
a common description instead of each single filename?

Thx
Maik
From:Gavin Lambert
Subject:Re: How to hide filenames during install
Date:Thu, 16 Dec 2004 10:47:55 +1300
Maik Delitsch wrote:
> i need to hide the filenames, which are currently installed by the wizard.
> How can i hide them? Is ther any flag or switch to turn them off and display
> a common description instead of each single filename?

[Code]
procedure InitializeWizard();
begin
WizardForm.FilenameLabel.Hide();
end;

If you want to display different text rather than hiding it entirely,
then instead of doing the above you can try adding a BeforeInstall
handler to each file that sets the Text property. I'm not completely
sure that that would work, though -- it depends on exactly when Inno
assigns the filename to the label.
   

Copyright © 2006 knowledge-database   -   All rights reserved