|
|
|
#1
|
|||
|
|||
|
Hello i have 3 issues,..please fix them and help me.
FIRST :- In main.iss file i am setting "#define AppSize "1640" " but when installing game then it's showing "Game Space 1 Gb, Total Space Needed 1Gb" But my game size is 1.64 gb ,..so please help me to fix the error. http://i.imgur.com/KaVWxEM.jpg ======================================= SECOND :- i want to remove nvidia phyx and framework from installing (redist). help me to disable them and hide that 2 options. http://i.imgur.com/leNdU7m.jpg ======================================= THIRD :- i want to change right side upper corner 3 signs to good one. http://i.imgur.com/2u8HNw5.jpg ======================================= Attaching my main.iss file,..please fix it. Please help me. thanks gods. |
| Sponsored Links |
|
#3
|
|||
|
|||
|
How to fix
#define AppSize = 18600 but when run setup it only show 18gb (not 18.6gb) You can fix this main help me Dante ![]() again ! thanks for everything
Last edited by minh_k43sj; 31-10-2014 at 19:03. |
|
#4
|
|||
|
|||
|
Quote:
and : - 18gb real is 18.432 => i get it- 600x1024=614,400 => what the 600x1024 ? i don't know - 18.432+614,400 = put this size on #define AppSize ?? Last edited by minh_k43sj; 31-10-2014 at 20:31. |
|
#5
|
|||
|
|||
|
just remove the round to get the decimal
Code:
Function NumToStr(Float: Extended): String;
Begin
Result:= Format('%.3n', [Float]); StringChange(Result, ',', '.');
while ((Result[Length(Result)] = '0') or (Result[Length(Result)] = '.')) and (Pos('.', Result) > 0) do
SetLength(Result, Length(Result));
End;
Function MbOrTb(Byte: Extended): String;
begin
if Byte < 1024 then Result:= NumToStr(Byte) + ' MB' else
if Byte/1024 < 1024 then Result:= NumToStr((Byte/1024*100)/100) + ' GB' else
Result:= NumToStr(((Byte/(1024*1024))*100)/100) + ' TB'
end;
Last edited by Dante1995; 31-10-2014 at 20:58. |
|
#6
|
|||
|
|||
|
Quote:
and how to hide button "Back" at second windows setup" sorry if i ask you too much (google translate, sorry my english)
Last edited by minh_k43sj; 31-10-2014 at 21:47. |
|
#7
|
|||
|
|||
|
Code:
if CurPageID=wpSelectDir then begin
WizardForm.BackButton.Hide;
end;
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup | REV0 | Conversion Tutorials | 129 | 21-05-2021 05:51 |
| INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 06:57 |
| Copy file with Inno Setup Script | emrahcey | Software | 1 | 02-07-2010 08:24 |