|
|
|
#1
|
||||
|
||||
|
FMXInno - Installer template Quote:
Quote:
. |
| The Following 11 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
ADMIRAL (22-01-2024), audiofeel (22-01-2024), Behnam2018 (22-01-2024), Ele (22-01-2024), hitman797 (22-01-2024), Jahan1373 (22-01-2024), Lord.Freddy (22-01-2024), Noname1966 (28-11-2024), nordi (12-02-2024), pcblizzard (27-01-2024), Tihiy_Don (22-01-2024) | ||
| Sponsored Links |
|
#2
|
||||
|
||||
|
i've added two new functions to retrieve the build date of the FMXInno library. i hope they'll be helpful in some cases.
Code:
function wGetFMXInnoBuildDate: Integer; procedure wGetFMXInnoBuildDateEx(var YearW, MonthW, DayW: Word); 1. Method - 01 Code:
function FMXInnoBuildDate_1: String;
var
YearW, MonthW, DayW: Word;
begin
wGetFMXInnoBuildDateEx(YearW, MonthW, DayW);
Result := Format('Build Date: %d-%d-%d', [YearW, MonthW, DayW]);
end;
2. Method - 02 Code:
function FMXInnoBuildDate_2: String;
var
YearW, MonthW, DayW: Word;
EncodedDate: Integer;
begin
EncodedDate := wGetFMXInnoBuildDate;
YearW := EncodedDate shr 9;
MonthW := (EncodedDate shr 5) and $0F;
DayW := EncodedDate and $1F;
Result := Format('Build Date: %d-%d-%d', [YearW, MonthW, DayW]);
end;
. Last edited by BLACKFIRE69; 11-05-2024 at 09:04. |
| The Following 6 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (23-01-2024), Behnam2018 (23-01-2024), Cesar82 (13-02-2024), hitman797 (23-01-2024), Lord.Freddy (24-01-2024), Tihiy_Don (23-01-2024) | ||
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Windows Fluent Effects Standalone API - InnoSetup / VCL / FXM | BLACKFIRE69 | Conversion Tutorials | 0 | 15-11-2023 17:35 |
| Windows Phone Installer similar to razor12911's original design? | Kitsune1982 | Conversion Tutorials | 0 | 02-07-2020 13:04 |
| INDEX - Conversion Tutorial Index | Razor12911 | Conversion Tutorials | 5 | 11-06-2020 02:05 |
| Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 09:48 |