Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials

Reply
 
Thread Tools Display Modes
  #1  
Old 21-01-2024, 03:05
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 670
Thanks: 471
Thanked 2,400 Times in 544 Posts
BLACKFIRE69 is on a distinguished road
Arrow 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.
Reply With Quote
The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (21-01-2024), hitman797 (21-01-2024), ItsAtomic (21-01-2024), Lord.Freddy (21-01-2024)
Sponsored Links
  #2  
Old 21-01-2024, 06:01
Tihiy_Don Tihiy_Don is offline
Registered User
 
Join Date: Mar 2023
Location: Los Angeles Lakers
Posts: 42
Thanks: 89
Thanked 23 Times in 16 Posts
Tihiy_Don is on a distinguished road
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.
Reply With Quote
  #3  
Old 22-01-2024, 02:55
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 670
Thanks: 471
Thanked 2,400 Times in 544 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by Tihiy_Don View Post
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 👍
Reply With Quote
The Following User Says Thank You to BLACKFIRE69 For This Useful Post:
Tihiy_Don (22-01-2024)
  #4  
Old 23-01-2024, 11:00
Tihiy_Don Tihiy_Don is offline
Registered User
 
Join Date: Mar 2023
Location: Los Angeles Lakers
Posts: 42
Thanks: 89
Thanked 23 Times in 16 Posts
Tihiy_Don is on a distinguished road
I propose to keep the library versioned not only in dates, but also in versions, as it was before.
Reply With Quote
  #5  
Old 24-01-2024, 07:03
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 670
Thanks: 471
Thanked 2,400 Times in 544 Posts
BLACKFIRE69 is on a distinguished road
Lightbulb

Quote:
Originally Posted by Tihiy_Don View Post
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).
Reply With Quote
The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (24-01-2024), hitman797 (24-01-2024), Lord.Freddy (24-01-2024)
  #6  
Old 26-01-2024, 07:17
Tihiy_Don Tihiy_Don is offline
Registered User
 
Join Date: Mar 2023
Location: Los Angeles Lakers
Posts: 42
Thanks: 89
Thanked 23 Times in 16 Posts
Tihiy_Don is on a distinguished road
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?

Last edited by Tihiy_Don; 27-01-2024 at 06:05.
Reply With Quote
  #7  
Old 29-01-2024, 17:17
hitman797's Avatar
hitman797 hitman797 is offline
Registered User
 
Join Date: Feb 2013
Location: Algeria
Posts: 168
Thanks: 449
Thanked 182 Times in 118 Posts
hitman797 is on a distinguished road
Quote:
Originally Posted by Tihiy_Don View Post
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;

Last edited by hitman797; 29-01-2024 at 17:32.
Reply With Quote
  #8  
Old 30-01-2024, 03:52
Tihiy_Don Tihiy_Don is offline
Registered User
 
Join Date: Mar 2023
Location: Los Angeles Lakers
Posts: 42
Thanks: 89
Thanked 23 Times in 16 Posts
Tihiy_Don is on a distinguished road
Quote:
Originally Posted by hitman797 View Post
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.
Reply With Quote
  #9  
Old 08-02-2024, 10:38
Masquerade's Avatar
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,167
Thanks: 284
Thanked 1,358 Times in 615 Posts
Masquerade is on a distinguished road
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?
Reply With Quote
  #10  
Old 08-02-2024, 12:04
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 670
Thanks: 471
Thanked 2,400 Times in 544 Posts
BLACKFIRE69 is on a distinguished road
Lightbulb

Quote:
Originally Posted by Masquerade View Post
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 View Post
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.


.
Attached Images
File Type: jpg acrylic-recipe-diagram1.jpg (60.7 KB, 113 views)
Reply With Quote
The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (08-02-2024), hitman797 (08-02-2024), Lord.Freddy (08-02-2024), Masquerade (09-02-2024)
  #11  
Old 15-02-2024, 16:31
audiofeel's Avatar
audiofeel audiofeel is offline
Registered User
 
Join Date: Jan 2013
Location: Russia
Posts: 366
Thanks: 443
Thanked 849 Times in 309 Posts
audiofeel is on a distinguished road
Question Out of Memory -

@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.
Reply With Quote
  #12  
Old 15-02-2024, 17:56
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 670
Thanks: 471
Thanked 2,400 Times in 544 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
@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.



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


.
Attached Images
File Type: png 00.png (119.0 KB, 78 views)
File Type: png 01.png (120.9 KB, 81 views)
File Type: gif 00.gif (172.3 KB, 73 views)
Attached Files
File Type: rar FMXInno - TestSpace.rar (3.59 MB, 15 views)
Reply With Quote
The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (15-02-2024), hitman797 (15-02-2024)
  #13  
Old 15-02-2024, 18:15
audiofeel's Avatar
audiofeel audiofeel is offline
Registered User
 
Join Date: Jan 2013
Location: Russia
Posts: 366
Thanks: 443
Thanked 849 Times in 309 Posts
audiofeel is on a distinguished road
Quote:
Originally Posted by BLACKFIRE69 View Post
no, you can even select DVD ROM. maybe something is wrong with the script; take a look.
.
OK. could you help in a more targeted way by pointing out the error? here is my script

https://fileforums.com/showpost.php?...&postcount=658
Reply With Quote
  #14  
Old 15-02-2024, 18:37
audiofeel's Avatar
audiofeel audiofeel is offline
Registered User
 
Join Date: Jan 2013
Location: Russia
Posts: 366
Thanks: 443
Thanked 849 Times in 309 Posts
audiofeel is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
OK. could you help in a more targeted way by pointing out the error? here is my script

https://fileforums.com/showpost.php?...&postcount=658
Thank you all... I saw the mistake myself
Arc[1].Angle(ADiskUsage.UsedSpace, ADiskUsage.TotalSpace);
NOT RIGHT
Arc[1].Angle(ADiskUsage.DiskLoad, 100);
RIGHT
Reply With Quote
The Following 2 Users Say Thank You to audiofeel For This Useful Post:
BLACKFIRE69 (15-02-2024), hitman797 (16-02-2024)
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
FMXInno - Windows Fluent Design Installer UI for Inno BLACKFIRE69 Conversion Tutorials 867 18-11-2024 14:20
Alone In The Dark (2008) - NO DISCUSSION OF CRACKS!!! TippeX PC Games 73 10-09-2008 12:43
I found discussion board for sex story and sex movie! newcomer1 Chit Chat 1 26-02-2005 09:40
WH40K: Dawn of war (General Discussion) Playbahnosh General Gaming 19 18-10-2004 06:12
A New Discussion about DVD-Writers (DVD Burners) MissFacetious CD/DVD-Writers 1 30-07-2002 03:08



All times are GMT -7. The time now is 03:40.


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