|
|
|
#1
|
|||
|
|||
|
In case no body saw my reply:
How do i dynamically make the installer asks for the next cab if it was missing on the disc without specifying which .cab is one the next disc? |
| Sponsored Links |
|
#2
|
||||
|
||||
|
Hello.
How can i change the value [mb] to gb? Code:
DiskSpaceMBLabel=At least [mb] MB of free disk space is required. |
|
#3
|
||||
|
||||
|
it's easy to do that just by using pos, check IS documentation
|
|
#4
|
||||
|
||||
|
Quote:
Can you give me an example? Last edited by Andre Jesus; 22-04-2013 at 15:34. |
|
#5
|
||||
|
||||
|
Quote:
sorry didn't also mention length function MBToGB(MB : Integer): String; begin if Length(IntToStr(MB)) > 3 then Result := Copy(IntToStr(MB), 0, Length(IntToStr(MB))-3) + '.' + Copy(IntToStr(MB), Length(IntToStr(MB))-2, 1) + ' GB' else Result := IntToStr(MB) + ' MB' end; how to use Legend: i = integer, a number to convert from MB to GB MBToGB(i) |
|
#6
|
||||
|
||||
|
Quote:
Setup.zip |
![]() |
| 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 |
| Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 09:48 |