|
|
|
#1
|
||||
|
||||
|
Quote:
this doesn't seems to work properly on Windows 10, but i can give you a quick fix. ![]() the quick fix requires at least Windows 10, version 1809 (build 17763) . Code:
Tested on: 1. Windows 10, version 20H2. 2. Windows 10, version 21H1. ![]() 2. replace the current FMXInno.dll file. 3. in addition, change your power-plan to High/Ultimate performance mode. ![]() . Last edited by BLACKFIRE69; 14-07-2024 at 01:28. |
| Sponsored Links |
|
#2
|
|||
|
|||
|
Quote:
Hello upon testing this, it doesn't seem to work. I am still have the same issue.
__________________
Noah |
|
#3
|
||||
|
||||
|
Quote:
noticed. can you run this test first? . Last edited by BLACKFIRE69; 20-01-2022 at 06:27. |
| The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
|
#4
|
|||
|
|||
|
Sorry for the late response but I get the same results as you
__________________
Noah |
| The Following 2 Users Say Thank You to xNoah For This Useful Post: | ||
Behnam2018 (20-03-2024), Jahan1373 (25-04-2023) | ||
|
#5
|
||||
|
||||
|
Update available!
what's new Quote:
ScreenShot: Last edited by BLACKFIRE69; 14-07-2024 at 01:29. |
| The Following 7 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
ADMIRAL (17-02-2022), FIFA_LOVER (16-02-2022), Gehrman (17-04-2022), Harsh ojha (15-02-2022), hitman797 (15-02-2022), joker85 (03-07-2025), ScOOt3r (15-02-2022) | ||
|
#6
|
||||
|
||||
|
Demo - WPI Corepack
. Last edited by BLACKFIRE69; 14-07-2024 at 01:35. |
| The Following 8 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
ADMIRAL (20-08-2022), audiofeel (20-08-2022), Gehrman (30-08-2022), Harsh ojha (22-08-2022), hitman797 (21-08-2022), houcine80 (20-08-2022), Razor12911 (19-08-2022), Scotty.5055 (30-11-2024) | ||
|
#7
|
||||
|
||||
|
for fast startup.
Code:
[Setup] //... Compression=zip/1 SolidCompression=False InternalCompressLevel=none //... |
| The Following User Says Thank You to BLACKFIRE69 For This Useful Post: | ||
ScOOt3r (30-08-2022) | ||
|
#8
|
||||
|
||||
|
FMXInno v1.0.0.2 - Updates
Code:
function FCreateFluent(WParent: HWND; DarkTheme, NewMaterial, CleanThanDefault,
NoBorder: Boolean): HWND;
Default material: ![]() ![]() New material: ![]() ![]() . Last edited by BLACKFIRE69; 14-07-2024 at 01:35. |
| The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
Razor12911 (09-09-2022), ScOOt3r (07-09-2022) | ||
|
#9
|
|||
|
|||
|
Please may I have some guidance transitioning my Installer from IsArcEx to using the module included in FMXInno? IsArcEx.dll is getting a lot of hits on VT and people downloading my releases are accusing me of putting trojans in the release.
|
| The Following User Says Thank You to Masquerade For This Useful Post: | ||
hitman797 (06-10-2023) | ||
|
#10
|
||||
|
||||
|
Quote:
Code:
[Files] Source: "Files\FMXInno.dll"; Flags: dontcopy; Code:
type TCallback = function(OverallPct, CurrentPct, DiskTotalMB, DiskExtractedMB: Integer; DiskName, CurrentFile, RemainsTime, ElapsedTime, CurSpeed, AvgSpeed: WideString): LongWord; TCallbackEx = function(OverallPct, CurrentPct, DiskTotalMB, DiskExtractedMB, TotalFiles, CurFiles: Integer; DiskName, CurrentFile, RemainsTime, ElapsedTime, CurSpeed, AvgSpeed: WideString): LongWord; Code:
var ISArcExDiskCount : Integer; ISArcExCancel : Integer; ISArcExError : Boolean; ISArcDiskAddingSuccess: Boolean; Code:
function ISArcExInit(WinHandle: Longint; TimeFormat: Integer; Callback: TCallback): Boolean; external 'ISArcExInit@files:FMXInno.dll stdcall delayload'; function ISArcExInitEx(WinHandle: Longint; TimeFormat: Integer; Callback: TCallbackEx): Boolean; external 'ISArcExInitEx@files:FMXInno.dll stdcall delayload'; function ISArcExAddDisks(Inputfile, Password, OutputPath: Widestring): Boolean; external 'ISArcExAddDisks@files:FMXInno.dll stdcall delayload'; function ISArcExExtract(DiskNumber: Integer; CfgFile, WorkPath: Widestring): Boolean; external 'ISArcExExtract@files:FMXInno.dll stdcall delayload'; procedure ISArcExCallbackInterval(MSec: Cardinal); external 'ISArcExCallbackInterval@files:FMXInno.dll stdcall delayload'; function ISArcExGetCallbackInterval: Cardinal; external 'ISArcExGetCallbackInterval@files:FMXInno.dll stdcall delayload'; procedure ISArcExReduceCalcAccuracy(Factor: Byte); // Factor: 1-5 external 'ISArcExReduceCalcAccuracy@files:FMXInno.dll stdcall delayload'; function SuspendProc: Boolean; external 'SuspendProc@files:FMXInno.dll stdcall delayload'; function ResumeProc: Boolean; external 'ResumeProc@files:FMXInno.dll stdcall delayload'; procedure ISArcExStop; external 'ISArcExStop@files:FMXInno.dll stdcall delayload'; procedure ISArcExCleanUp; external 'ISArcExCleanUp@files:FMXInno.dll stdcall delayload'; function ChangeLanguage(Language: Widestring): boolean; external 'ChangeLanguage@files:FMXInno.dll stdcall delayload'; function Exec2(filename, Param: WideString; Show: Boolean): Boolean; external 'Exec2@files:FMXInno.dll stdcall delayload'; Last edited by hitman797; 06-10-2023 at 02:26. |
| The Following User Says Thank You to hitman797 For This Useful Post: | ||
Masquerade (06-10-2023) | ||
|
#11
|
|||
|
|||
|
And am I alright, with this code, to just drag and drop the FMX files into the project? I haven't upgraded the DLL in while.
|
|
#12
|
|||
|
|||
|
link can downloud the best existing compression tool that works with WPI_CorePack
|
| The Following User Says Thank You to R6S For This Useful Post: | ||
Behnam2018 (19-05-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 |