I have the following lines in my installer setup
procedure CurPageChanged(CurPageID: Integer);
begin
if IsAdmin then
WizardForm.SelectDirBrowseLabel.Caption := 'Installation directory:'
else
WizardForm.SelectDirBrowseLabel.Caption := 'Restart installer as Administrator to install {#AppName} system wide.' #13#10 + #13#10 + 'Installation directory:';
end;
The problem is that the text on the new lines gets cut by the directory entry box so they are not visible.