FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   FMXInno - Discussion / Q&A Hub : Ask Away! (https://fileforums.com/showthread.php?t=106202)

BLACKFIRE69 21-01-2024 02:05

FMXInno - Discussion / Q&A Hub : Ask Away!
 



Quote:

I thought yesterday that we should enhance our mutual support for FMXInno. therefore, i've decided to create this new thread where everyone, including newcomers, can ask any questions they may have.

Quote:

1. Personally, i believe the main thread of FMXInno should be cleaner and more organized. so, the purpose of this new thread is to provide a common space for everyone in the FMXInno community to ask anything on their minds without any restrictions.


2. Whatever you ask here, whether it's a simple or complex matter, no one will judge or embarrass you. this is your playground—feel free to ask anything.

Tihiy_Don 21-01-2024 05:01

It's very cool! I would like to receive the answer that I sent you about fine-tuning edits and other components in order to completely abandon styles.

BLACKFIRE69 22-01-2024 01:55

Quote:

Originally Posted by Tihiy_Don (Post 503428)
It's very cool! I would like to receive the answer that I sent you about fine-tuning edits and other components in order to completely abandon styles.


yes, i remember that. recreating 'TEdit' from scratch is a little bit time-consuming. if i'm able to do anything regarding this, i'll let you know 👍

Tihiy_Don 23-01-2024 10:00

I propose to keep the library versioned not only in dates, but also in versions, as it was before.

BLACKFIRE69 24-01-2024 06:03

Quote:

Originally Posted by Tihiy_Don (Post 503442)
I propose to keep the library versioned not only in dates, but also in versions, as it was before.


FMXInno v1.0.0.2


Quote:

-- FMXInno v1.0.0.2 is the last version of the FMXInno development. i had planned to release v1.0.0.3 a long time ago, but i've officially abandoned it. this means there will be no major updates for FMXInno.

-- however, in the meantime, i received requests from some people to develop another version of FMXInno to meet their requirements.
so, i started a new project called 'FMXInno Next' in parallel with the time when Huawei began their new OS called 'HarmonyOS Next'.

-- 'FMXInno Next' is based on v1.0.0.3 but is completely different in structure compared to v1.0.0.2, making v1.0.0.2 incompatible with the new version.

-- 'FMXInno Next' focuses on more advanced features, including AI, Crypto, etc., and targets the upcoming Windows 12+.

-- it's being developed as a private project and will not be available for public/free use. currently, it's still in the alpha stage, and i plan to release it in the second quarter of the next year (2025).

Tihiy_Don 26-01-2024 06:17

I have the following code that cuts the text I don't need from the amount of RAM in the system.

Quote:

function GetRamMemory: Integer;
var i: Integer;
s: String;
begin
s:=MbOrTb(RamInfo.TotalRam, 0);
for i:=length(s) downto 1 do
if not (s[i] in ['0','1','2','3','4','5','6','7','8','9']) then delete(s,i,1);

Result:=StrToInt(s);
end;

Is there a way around this by using some parameter in the FMX library to immediately remove the text from the RAM line in RamInfo.TotalRam?

hitman797 29-01-2024 16:17

Quote:

Originally Posted by Tihiy_Don (Post 503466)
I have the following code that cuts the text I don't need from the amount of RAM in the system.




Is there a way around this by using some parameter in the FMX library to immediately remove the text from the RAM line in RamInfo.TotalRam?

use Copy to cut the string.
Length of 'Welcome World' = 13 integer.
W e l c o m e W o r l d
1.2.3.4.5.6.7.8.9.10.11.12.13
Indx = 1.2.3.4.5.6.7.8.9.10.11.12.13
Count = number of characters after the index.
Copy('Welcome World', 1, 3); = 'Wel' String.
function Copy(S: String; Indx, Count: Integer): String;
function Length(S: String): Longint;

Tihiy_Don 30-01-2024 02:52

Quote:

Originally Posted by hitman797 (Post 503498)
use Copy to cut the string.
Length of 'Welcome World' = 13 integer.
W e l c o m e W o r l d
1.2.3.4.5.6.7.8.9.10.11.12.13
Indx = 1.2.3.4.5.6.7.8.9.10.11.12.13
Count = number of characters after the index.
Copy('Welcome World', 1, 3); = 'Wel' String.
function Copy(S: String; Indx, Count: Integer): String;
function Length(S: String): Longint;

I kind of brought the solution to the questions above in my function, the question was different.

Masquerade 08-02-2024 09:38

Is the semi-transparent background feature seen in BLACKFIRE's recreation of FitGirl script compatible with other versions of Windows older than 11? I love the idea of having the blurred background. Thanks!

Also, I'm still having the issue of the setup freezing during the deload procedure, would there be a possibility to have a debug version of the dll with a message box that popsup during each deload step so I can inform where exactly the setup is getting stuck?

BLACKFIRE69 08-02-2024 11:04

1 Attachment(s)
Quote:

Originally Posted by Masquerade (Post 503567)
I'm still having the issue of the setup freezing during the deload procedure, would there be a possibility to have a debug version of the dll with a message box that popsup during each deload step so I can inform where exactly the setup is getting stuck?


if you can PM the test files, i can take a closer look.



Quote:

Originally Posted by Masquerade (Post 503567)
Is the semi-transparent background feature seen in BLACKFIRE's recreation of FitGirl script compatible with other versions of Windows older than 11? I love the idea of having the blurred background. Thanks!



Quote:

1. Windows Acrylic material (visual effect: semi-transparent, mimics frosted glass) was introduced in Windows 10 as part of the Fluent Design System.

* with Windows 11, acrylic got a makeover, becoming brighter and more translucent for better integration with the background content,


>>> so it supports Windows 11 and Windows 10 only.



2. however, FMXInno's Fluent Forms also support Windows 8/8.1 and Windows 7:

a. For Windows 8/8.1, it features colorized semi-transparency.
b. For Windows 7, it only utilizes the WinAero-Glass.


.

BLACKFIRE69 15-02-2024 16:56

4 Attachment(s)
Quote:

Originally Posted by audiofeel (Post 503662)
@BLACKFIRE69
https://youtu.be/OR7WzALNGdo?si=JWXAsQ_PqcdorZ1n
When selecting the installation folder, optical media are displayed, how can they be excluded from there? The error Is "Out Of Memory". Perhaps no one will try to select them and there will be no error, perhaps there is an error in my code., Or you have another solution.:o




no, you can even select DVD ROM. maybe something is wrong with the script; take a look.


.


All times are GMT -7. The time now is 18:55.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com