|
|
|
#1
|
||||
|
||||
|
Testing:
guys, if any of you happen to have some free time and are using virtual machines other than VMware 17.x, could you please test this on them? ![]() Quote:
Last edited by BLACKFIRE69; 07-10-2023 at 08:38. |
| Sponsored Links |
|
#2
|
||||
|
||||
|
HI, Is it inno script project or compiler?
__________________
Search and Find |
| The Following User Says Thank You to ADMIRAL For This Useful Post: | ||
Behnam2018 (13-10-2023) | ||
|
#3
|
||||
|
||||
|
I tried to make it once when the sample was just made, but I couldn't. Even now, if I want to make it, I won't succeed. If possible, please complete it and share the code so that I can increase my ability to make this type of script.
Thankful
__________________
Search and Find |
| The Following User Says Thank You to ADMIRAL For This Useful Post: | ||
BLACKFIRE69 (13-10-2023) | ||
|
#4
|
||||
|
||||
|
Quote:
and audiofeel, created this scenario using this library. So, thanks to them Last edited by hitman797; 13-10-2023 at 10:02. |
| The Following 2 Users Say Thank You to hitman797 For This Useful Post: | ||
ADMIRAL (14-10-2023), BLACKFIRE69 (13-10-2023) | ||
|
#5
|
||||
|
||||
|
Quote:
The installation path selection section in windows 10 pro new Updates. it has a problem and does not work I tried to change the codes but it doesn't work
__________________
Search and Find Last edited by ADMIRAL; 14-11-2023 at 07:01. |
|
#6
|
||||
|
||||
|
thanks for answer but it's was about metro0 script that you posted
__________________
Search and Find |
|
#7
|
||||
|
||||
|
Quote:
after making a few changes to the code, you can make it work. however, if i'm correct, there're some aspects in the script that need further implementation. it would be better to ask the authors to complete the script. ![]() Code:
Edit1:
* Replace the current 'ListBoxOnChange' code with this.
procedure ListBoxOnChange(Sender: TObject);
var
ADir: String;
begin
if (FMXListBox[2].GetItemIndex > -1) then
begin
ADir := FMXEdit[1].GetText;
StringChange(ADir, ExtractFileDrive(ADir), FMXListBox[2].GetItemText(FMXListBox[2].GetItemIndex));
FMXLabel[197].Text(MinimizePathName(ADir, WizardForm.DirEdit.Font, WizardForm.DirEdit.Width));
FMXEdit[1].Text(MinimizePathName(ADir, WizardForm.DirEdit.Font, WizardForm.DirEdit.Width));
WizardForm.DirEdit.Text:= ADir;
FMXDiskUsage.SetDir(WizardForm.DirEdit.Text);
FMXLabel[82].Text(MbOrTb(FMXDiskUsage.FreeSpace, 1));
FMXLabel[85].Text(MbOrTb(FMXDiskUsage.FreeSpace, 1) + ' is available from the selected drive');
FMXArc[5].Angle(FMXDiskUsage.FreeSpace, FMXDiskUsage.TotalSpace);
end;
end;
procedure ListBx3OnChange(Sender: TObject);
var
ADir: WideString;
begin
if FMXListBox[3].GetItemIndex > -1 then
begin
ADir:= ExtractFileDrive(FMXEdit[1].GetText) + '\' + AddBackslash(FMXListBox[3].GetItemText(FMXListBox[3].GetItemIndex)) + '{#MyAppName}';
FMXLabel[197].Text(MinimizePathName(ADir, WizardForm.DirEdit.Font, WizardForm.DirEdit.Width));
FMXEdit[1].Text(MinimizePathName(ADir, WizardForm.DirEdit.Font, WizardForm.DirEdit.Width));
WizardForm.DirEdit.Text:= ADir;
FMXDiskUsage.SetDir(WizardForm.DirEdit.Text);
FMXLabel[82].Text(MbOrTb(FMXDiskUsage.FreeSpace, 1));
FMXLabel[85].Text(MbOrTb(FMXDiskUsage.FreeSpace, 1) + ' is available from the selected drive');
FMXArc[5].Angle(FMXDiskUsage.FreeSpace, FMXDiskUsage.TotalSpace);
end;
end;
Code:
Edit2: * Comment out the following line in the code. //FMXEdit[1].OnChange(@ListBoxOnChange); Code:
Edit3: * Replace the ListBoxOnChange event with ListBx3OnChange for the FMXListBox[3]. FMXListBox[3].OnChange(@ListBx3OnChange); Last edited by BLACKFIRE69; 14-07-2024 at 02:12. |
|
#8
|
||||
|
||||
|
Quote:
Thank you for your quick reply, but even with the edit's codes, I am still facing the same problem. Are there any problems for you with these codes in the script?
__________________
Search and Find |
|
#9
|
||||
|
||||
|
In the first test, my partitions and folders were not displayed at all, and by adding codes, I only encountered errors.
__________________
Search and Find |
|
#10
|
||||
|
||||
|
Again, I tried to change the redirection section similar to the photo by simulating the codes, but again it was useless because the coding method is different in both.
__________________
Search and Find |
|
#11
|
|||
|
|||
|
Icons
Hello, thank you for the initiative of this beautiful script and your round-the-clock effort, you can only make it so that you have more than one icon on the desktop, thank you very much.
|
|
#12
|
||||
|
||||
|
Quote:
No matter how much we thank all three of them, it is still not enough for their efforts Thank you for sharing this script, I am trying to rewrite this script myself so that I can reach a level like I was able to do in React JS.
__________________
Search and Find |
| The Following 2 Users Say Thank You to ADMIRAL For This Useful Post: | ||
audiofeel (15-10-2023), Behnam2018 (14-10-2023) | ||
|
#13
|
||||
|
||||
|
FMXInno Updates - [2023-Nov-13]
Code:
* Added new functions:
-- function wGetRecycleBinInfo(ARootPath: WideString; var TotalSizeMB: Extended; var FileCount: Integer): Boolean;
-- function wCopyToClipboard(const AStr: WideString): Boolean;
-- function wPasteFromClipboard: WideString;
* Updated FForm class.
* Updated FluentApi (Internal + External).
-- Make sure to update your current scripts as follows:
function EnableFluent(const WinHandle: HWND; DarkTheme, NoBorders, NoTitleBar: Boolean; Opacity: Single; BrightnessPct: Byte): Integer;
external 'EnableFluent@{tmp}\FluentApi.dll stdcall uninstallonly delayload';
to
function EnableFluent(const WinHandle: HWND; DarkTheme, NoBorders, NoTitleBar: Boolean; Opacity: Single; BrightnessPct: Byte): Integer;
external 'faC1222296@{tmp}\FluentApi.dll stdcall uninstallonly delayload';
* Updated ISArcEx (Internal + External).
-- Added a new method:
> ISArcExIsSuspended.
-- The following methods have been renamed and updated:
> Suspend/Resume Proc, ChangeLanguage.
* Updated Botva2-like classes:
-- FPictureButton2, FPictureVisiblePart, FPictureProgressBar, and FPictureTrackBar.
* Some improvements and bug fixes.
Code:
* Compiled in RadStudio 12 Athens.
-- Embarcadero claims that the performance has been improved for FMX.
-- FMXInno already comes with built-in support for SKIA, but since RadStudio 12
and onward, Delphi has native support for SKIA.
If you need me to update SKIA in FMXInno, I'll do that on request.
Note: This update doesn't use the RadStudio 12 native SKIA (v6.0.0); instead,
this update uses the previous version (v5.0.0).
The first post has been updated. |
|
#14
|
|||
|
|||
|
Hello, the site is having problems recently. Please, if you are destined, click on a Telegram channel to see your latest works with lots of news. Thank you.
|
|
#15
|
|||
|
|||
|
Quote:
|
| The Following User Says Thank You to Jahan1373 For This Useful Post: | ||
audiofeel (17-11-2023) | ||
![]() |
|
|
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 |