#166
|
||||
|
||||
ok pro, I fix the problem.
Code:
procedure Timer1OnTimer(Sender: TObject); var RAMPCT, CPUPCT, DiskPCT: Single; begin CPUPCT:=(CPU.CpuLoad * (360 - 2 * C_ANGLE)) / 100; RoundArc.Arc.EndAngle(CPUPCT); PctLB.Text(IntToStr(Round(CPU.CpuLoad))); RAMPCT:=(RAM.RamLoad * (360 - 2 * C_ANGLE)) / 100; RoundArc2.Arc.EndAngle(RAMPCT); PctLB2.Text(IntToStr(Round(RAM.RamLoad))); DiskPCT:=(Disk.DiskLoad * (360 - 2 * C_ANGLE)) / 100; RoundArc3.Arc.EndAngle(DiskPCT); PctLB3.Text(IntToStr(Round(Disk.DiskLoad))); end; Last edited by hitman797; 07-01-2023 at 05:24. |
The Following User Says Thank You to hitman797 For This Useful Post: | ||
audiofeel (07-01-2023) |
Sponsored Links |
#167
|
||||
|
||||
Quote:
something still doesn't seem right.... for 0% : . Last edited by BLACKFIRE69; 14-07-2024 at 02:46. |
The Following User Says Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (07-01-2023) |
#168
|
||||
|
||||
@hitman797, this works fine.
Code:
procedure Timer1OnTimer(Sender: TObject); var delta1, delta2, delta3: Single; CPUPct, RAMPct, DiskPct: Cardinal; begin CPUPct := CPU.CpuLoad; RAMPct := RAM.RamLoad; DiskPct := Disk.DiskLoad; delta1:=(CPUPct * (360 - 2 * C_ANGLE)) / 100; RoundArc.Arc.EndAngle(delta1); PctLB.Text(IntToStr(CPUPct)); delta2:=(RAMPct * (360 - 2 * C_ANGLE)) / 100; RoundArc2.Arc.EndAngle(delta2); PctLB2.Text(IntToStr(RAMPct)); delta3:=(DiskPct * (360 - 2 * C_ANGLE)) / 100; RoundArc3.Arc.EndAngle(delta3); PctLB3.Text(IntToStr(DiskPct)); end; |
The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
#169
|
||||
|
||||
Code:
procedure Timer1OnTimer(Sender: TObject); var PCT, RAMPCT, CPUPCT, DiskPCT: Single; begin PCT:=(CPU.CpuLoad * 2.5); CPUPCT:=(PCT * (360 - 2 * C_ANGLE)) / 100; RoundArc.Arc.EndAngle(CPUPCT); PctLB.Text(IntToStr(Round(PCT))); RAMPCT:=(RAM.RamLoad * (360 - 2 * C_ANGLE)) / 100; RoundArc2.Arc.EndAngle(RAMPCT); PctLB2.Text(IntToStr(Round(RAM.RamLoad))); DiskPCT:=(Disk.DiskLoad * (360 - 2 * C_ANGLE)) / 100; RoundArc3.Arc.EndAngle(DiskPCT); PctLB3.Text(IntToStr(Round(Disk.DiskLoad))); end; |
The Following 4 Users Say Thank You to hitman797 For This Useful Post: | ||
#170
|
||||
|
||||
Quote:
Is it possible to change the color of the PNG with a library FMXInno? |
The Following User Says Thank You to hitman797 For This Useful Post: | ||
audiofeel (10-01-2023) |
#171
|
||||
|
||||
APEX Style
APEX Style .iss
I fixed something (according to the advice I received). Replaced the latest versions of the DLL --------------------- 03.02 Fixed - More correct operation of "shutting down the PC after installation" Last edited by audiofeel; 27-12-2023 at 11:08. |
The Following 6 Users Say Thank You to audiofeel For This Useful Post: | ||
ADMIRAL (12-01-2023), Behnam2018 (11-01-2023), BLACKFIRE69 (12-01-2023), Gehrman (22-01-2023), Harsh ojha (04-02-2023), hitman797 (11-01-2023) |
#172
|
||||
|
||||
FMXInno - Updates
Code:
What's new: 1. Added full control of Taskbar. Last edited by BLACKFIRE69; 14-07-2024 at 02:47. |
The Following 5 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (11-01-2023), Behnam2018 (11-01-2023), ffmla (13-01-2023), Gehrman (12-01-2023), hitman797 (12-01-2023) |
#173
|
||||
|
||||
FMXInno - Updates
Code:
What's new: 1. Added more FireMonkey Image Effects. Link: More Details Quote:
Quote:
Last edited by BLACKFIRE69; 31-03-2023 at 10:45. |
#174
|
||||
|
||||
FMXInno - Updates
Code:
What's new: 1. Added more animations. - ColorKey Animation - FloatKey Animation 2. Updated Other Animation Classes. 3. Added the following properties to objects. Quote:
Last edited by BLACKFIRE69; 31-03-2023 at 10:46. |
#175
|
||||
|
||||
FMXInno - Updates
Code:
1. Added an extra option (Taskbar Flash). - procedure pTaskBarFlash(FValue: Boolean); Last edited by BLACKFIRE69; 14-07-2024 at 02:47. |
#176
|
||||
|
||||
a small mistake
file "data1.bf" no. but it is deduced that he is just "bad". in my opinion it should be like "missing"?
Last edited by audiofeel; 27-12-2023 at 11:08. |
#177
|
||||
|
||||
Quote:
. Last edited by BLACKFIRE69; 14-07-2024 at 02:47. |
#178
|
|||
|
|||
Hi,
Audiofeel helped to write the script and UI design for my new installer but some users are having an issue where the setup will simply hang in the taskbar. I am not sure what could be causing this or if it could be looked into. Please let me know. One such user is using Windows 11 with an i6 9600K and an RX 590 videocard. An image of how the setup hangs: Is this an FMXInno problem? Thanks! |
#179
|
||||
|
||||
Quote:
i've had this experience before when trying to run Setup.exe from a pen drive. but it works fine for external hard drives. i dont know why... . Last edited by BLACKFIRE69; 14-07-2024 at 02:48. |
The Following User Says Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (15-01-2023) |
#180
|
||||
|
||||
Sorry... found a typo
Code:
// Exit Message type FExitMsg = Interface(IUnknown) '{DA1F9482-7A11-4AFC-9471-E20FD9DB7F6E}' ........ procedure SetMsg1(const Msg1: WideString); procedure SetMsg2(const Msg1: WideString); And one more thing. Could someone check for operability FPictureButton doesn't quite work in it - Code:
procedure Enabled(Enable: Boolean); ... and ... SetText(const FText: WideString); That is, if you want to change the text on any page, then it does not change (if everything is fine with you, then I am crooked ) |
Thread Tools | |
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 18:35 |
Windows Phone Installer similar to razor12911's original design? | Kitsune1982 | Conversion Tutorials | 0 | 02-07-2020 14:04 |
INDEX - Conversion Tutorial Index | Razor12911 | Conversion Tutorials | 5 | 11-06-2020 03:05 |
Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 10:48 |