|
|
|
#1
|
|||
|
|||
|
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. |
| Sponsored Links |
|
#2
|
|||
|
|||
|
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. |
|
#3
|
|||
|
|||
|
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. |
|
#4
|
|||
|
|||
|
Code:
if CurPageID=wpSelectDir then begin
WizardForm.BackButton.Hide;
end;
|
|
#5
|
|||
|
|||
|
Quote:
and : 1. add music on/off button as this image : 2.how to remove autoplay button music on (not hide, i know how to hide button)
Last edited by minh_k43sj; 01-11-2014 at 05:37. |
|
#6
|
|||
|
|||
|
I do not think you could do so.
1) you should delete the cjstyles or modify it to have full control of bordericon 2) you should disable the borderstyle and create custom button not worth doing these stupid changes
|
| The Following User Says Thank You to Dante1995 For This Useful Post: | ||
minh_k43sj (01-11-2014) | ||
![]() |
| 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 |