![]() |
StatusMsg: Help
It would be possible to place Status Msg: at StatusLabel I do not use WizardForm.StatusLabel
Filename: {src}\support\{#Soft2}\vcredist_x86.exe; Parameters: /q; StatusMsg: Aguarde: Instalando {#Soft2}...; Check: Soft2 and CheckError use StatusLabel := TLabel.Create(WizardForm); With StatusLabel do begin Parent := WizardForm; Caption := 'Extraindo arquivos...'; Font.Size := 10; Font.Style := [fsBold]; Transparent := true; SetBounds(90,120,300,30); end; I tried StatusLabel := TLabel.Create(WizardForm); With StatusLabel do begin Parent := WizardForm; Caption := WizardForm.StatusLabel.Caption; Font.Size := 10; Font.Style := [fsBold]; Transparent := true; SetBounds(90,120,300,30); end; does not work there is a way to put StatusMSG in StatusLabel? without creating WizardForm.StatusLabel Thanks |
Just change the position of the WizardForm.StatusLabel on CurStepChanged event,
and hide the StatusLabel in ssPostInstall Code:
Filename: {src}\support\{#Soft2}\vcredist_x86.exe; Parameters: /q; StatusMsg: Aguarde: Instalando {#Soft2}...; Check: Soft2 and CheckErrorCode:
StatusLabel := TLabel.Create(WizardForm);Code:
procedure CurStepChanged(CurrentStep: TSetupStep); |
Check your mp
|
1 Attachment(s)
Thank you friend but could not make it work you can check my script thanks
|
1 Attachment(s)
Try this:
|
procedure CurStepChanged(CurStep: TSetupStep);
begin #ifdef Soft1 if (CurStep = ssInstall) and not ISDoneError and (Soft1 = true) then begin StatusLabel.Caption:='Instalando {#Soft1}...'; end; #endif #ifdef Soft2 if (CurStep = ssInstall) and not ISDoneError and (Soft2 = true) then begin StatusLabel.Caption:='Instalando {#Soft2}...'; end; #endif #ifdef Soft3 if (CurStep = ssInstall) and not ISDoneError and (Soft3 = true) then begin StatusLabel.Caption:='Instalando {#Soft3}...'; end; #endif #ifdef Soft4 if (CurStep = ssInstall) and not ISDoneError and (Soft4 = true) then begin StatusLabel.Caption:='Instalando {#Soft4}...'; end; #endif end; |
Solved thanks "JRD" that's what I wanted
a big hug! |
No prob bro :D
|
1 Attachment(s)
This post is not personal, just to help buttignol.
-Just Add or Remove redist: Code:
[Redist]Code:
[CustomMessages]http://img11.hostingpics.net/pics/195477772.jpg http://img11.hostingpics.net/pics/636382353.jpg http://img11.hostingpics.net/pics/893472884.jpg http://img11.hostingpics.net/pics/969471345.jpg -Detect x86/x64 redist: http://img11.hostingpics.net/pics/744065266.jpg http://img11.hostingpics.net/pics/180039867.jpg http://img11.hostingpics.net/pics/448760368.jpg Changes: -CancelButton is disabled on install redist -Hand cursor on checkbox redist |
Our My friend very good congratulations
I thank for their work It is perfect |
| All times are GMT -7. The time now is 23:21. |
Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com