FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   INNO TROUBLESHOOT - Questions Here (https://fileforums.com/showthread.php?t=93193)

Razor12911 05-12-2016 10:56

1) if isdone was not used, meaning if you rely on internal installation, i don't think that's possible.
2)
procedure InitializeUninstallProgressForm;
begin
with UninstallProgressForm.WizardSmallBitmapImage do
begin
left...
Width...
end;
end;
3) add labels, apply math, add a counter for the elapsed time x (100 - current progress), use a timer to update labels.

nizcoz 05-12-2016 11:18

Quote:

Originally Posted by Razor12911 (Post 454223)
1) if isdone was not used, meaning if you rely on internal installation, i don't think that's possible.
2)
procedure InitializeUninstallProgressForm;
begin
with UninstallProgressForm.WizardSmallBitmapImage do
begin
left...
Width...
end;
end;
3) add labels, apply math, add a counter for the elapsed time x (100 - current progress), use a timer to update labels.

2) How define the bmp file? i wish that uninstaller shows the same that the installer. The installer show the bmp file with this size.

3) A simple example? with seconds and porcentage? it`s possible?

Thanks a lot!

nizcoz 10-12-2016 14:11

Hi! How to add the function of TotalSpace, freeSpace, NeedSpace to a readypage??

nizcoz 26-12-2016 13:04

What characteristics are required for an avi file with Inno Media Player? Because a particular avi file works ok, but with another video file, it doesn't work.

nizcoz 27-12-2016 06:38

Quote:

Originally Posted by nizcoz (Post 454824)
What characteristics are required for an avi file with Inno Media Player? Because a particular avi file works ok, but with another video file, it doesn't work.

Solved.

Viper645 14-03-2017 01:38

Quote:

Originally Posted by Razor12911 (Post 454223)
1) if isdone was not used, meaning if you rely on internal installation, i don't think that's possible.
2)
procedure InitializeUninstallProgressForm;
begin
with UninstallProgressForm.WizardSmallBitmapImage do
begin
left...
Width...
end;
end;
3) add labels, apply math, add a counter for the elapsed time x (100 - current progress), use a timer to update labels.

Will you please check your PM please?

sanujsahu 24-03-2017 00:47

Bro how to make your own design innovative script

nizcoz 24-03-2017 03:30

Quote:

Originally Posted by Viper645 (Post 457105)
Will you please check your PM please?

I do not have messages.

nizcoz 24-03-2017 03:32

How to decompress an arc file with password when i use a isdone (ini) script? (by dante1995)

-XCX- 24-03-2017 03:58

Quote:

Originally Posted by nizcoz (Post 457385)
How to decompress an arc file with password when i use a isdone (ini) script? (by dante1995)

if not ISArcExtract ( 0, 100, ExpandConstant('{src}\data.bin), ExpandConstant('{app}\'), '', false, '{#PasswordHere}', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;

nizcoz 24-03-2017 05:19

Quote:

Originally Posted by -XCX- (Post 457386)
if not ISArcExtract ( 0, 100, ExpandConstant('{src}\data.bin), ExpandConstant('{app}\'), '', false, '{#PasswordHere}', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;

@-XCX-

In this code http://ww2.fileforums.com/showthread.php?t=96170 (see ISDone v0.6 lite (ini), it is not the classic isdone, it is a custom isdone (dante1995)) . There is not a line of code like that where to replace what you say.

-XCX- 24-03-2017 07:02

Quote:

Originally Posted by nizcoz (Post 457389)
@-XCX-

In this code http://ww2.fileforums.com/showthread.php?t=96170 (see ISDone v0.6 lite (ini), it is not the classic isdone, it is a custom isdone (dante1995)) . There is not a line of code like that where to replace what you say.

paste this
if ISDoneInit(ExpandConstant('{tmp}\records.inf'), $F777, 0,0,0, MainForm.Handle, 512, @ProgressCallback) then begin
repeat

case ActiveLanguage of
'en': ChangeLanguage('English');
'it': ChangeLanguage('Italian');
end;

if not SrepInit('',512,0) then ISDoneError := True;
if not PrecompInit('',128,0) then ISDoneError := True;
if not FileSearchInit(true) then ISDoneError := True;
i:=1;
if (GetIniString('FreearcFile' + IntToStr(i),'Archive','',ExpandConstant('{tmp}\Set up.ini')) <> '') then
begin
SetArrayLength(Arc1,4);
SetArrayLength(Arc2,4);
repeat
Arc1[0]:=ExpandConstant(GetIniString('FreearcFile' + IntToStr(i),'Archive','',ExpandConstant('{tmp}\Set up.ini')));
Arc1[1]:=ExpandConstant(GetIniString('FreearcFile' + IntToStr(i),'Output','',ExpandConstant('{tmp}\Setu p.ini')));
Arc1[2]:=ExpandConstant(GetIniString('FreearcFile' + IntToStr(i),'Disk','1',ExpandConstant('{tmp}\Setup .ini')));
Arc1[3]:=GetIniString('FreearcFile' + IntToStr(i),'Password','',ExpandConstant('{tmp}\Se tup.ini'));

if Arc1[0] <> '' then
begin
if not FileExists(Arc1[0]) then
begin
if MsgBox(SetupMessage(msgChangeDiskTitle) +' '+'( '+ Arc1[2]+' )', mbError, MB_OKCANCEL) = IDCANCEL then ISDoneError := True;
end else begin
if not ISArcExtract( 0, 0, Arc1[0], Arc1[1], '', false, 'edward', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then ISDoneError := True;

i:= i + 1;
end;
end;
until ((GetIniString('FreearcFile' + IntToStr(i),'Archive','',ExpandConstant('{tmp}\Set up.ini')) = '') or (ISDoneError = True));
end;
until true;
ISDoneStop;
end;
and
put
[FreearcFile1]
Archive={src}\data.arc
Output={app}
Disk=1
Password=herepassword

nizcoz 27-03-2017 04:57

And, how to solve error code 6 (unarc.dll)?

TWOELV 27-03-2017 19:01

http://i.imgur.com/qzwIeq5.png

can someone translate this and tell me what is causing the issue ? thank you

sanujsahu 28-03-2017 03:42

How to make designer setup in inno setup script of your own?
 
Please I want to make own designer setup:):confused:


All times are GMT -7. The time now is 01:23.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com