Go Back   FileForums > Search Forums

Showing results 1 to 25 of 117
Search took 0.00 seconds.
Search: Posts Made By: hitman797
Forum: Conversion Tutorials 30-06-2024, 12:24
Replies: 131
Views: 58,100
Posted By hitman797
//About Game Button ...

//About Game Button
TObject(Button[2].GetObject): begin
SectionContent[1].Visible(True);
SectionContent[2].Visible(False);
Button[3].Enabled(False);

if...
Forum: Conversion Tutorials 17-06-2024, 10:53
Replies: 865
Views: 274,536
Posted By hitman797
Red face use this procedure. procedure SetPaths(const...

use this procedure.

procedure SetPaths(const AUserPrograms, ACommonPrograms, AUserStartup, ACommonStartup: String);
Forum: Conversion Tutorials 04-06-2024, 11:31
Replies: 865
Views: 274,536
Posted By hitman797
TTextAlign = (txCenter, txLeading, txTrailing); ...

TTextAlign = (txCenter, txLeading, txTrailing);
procedure Text1HorzAlign(HAlign: TTextAlign);
procedure Text2HorzAlign(HAlign: TTextAlign);
Forum: Conversion Tutorials 15-03-2024, 14:18
Replies: 865
Views: 274,536
Posted By hitman797
add this to the code. procedure...

add this to the code.
procedure InitializeWizard();
begin
FMXForm.Show;
end;
Forum: Conversion Tutorials 14-03-2024, 12:48
Replies: 12
Views: 6,837
Posted By hitman797
Talking @BLACKFIRE69, can you fix ISCompilerEx.dll the...

@BLACKFIRE69, can you fix ISCompilerEx.dll the Windows security software thinks it's a virus.
* And free from false-positive trojan pop-ups.
Forum: Conversion Tutorials 03-03-2024, 04:53
Replies: 24
Views: 10,322
Posted By hitman797
Talking Download it from here.:rolleyes: Shadow...

Download it from here.:rolleyes:
Shadow Compressor v3.1.0.1.rar/file (https://www.mediafire.com/file/3df1qgirp7wvodb/Shadow+Compressor+v3.1.0.1.rar/file)
Forum: Conversion Tutorials 01-03-2024, 02:29
Replies: 865
Views: 274,536
Posted By hitman797
FMXInno features

HI, @BLACKFIRE69, :o can you add Radiant Shapes to the FMXInno. ;)

Radiant Parallelogram.
Radiant Hexagon.
Forum: Conversion Tutorials 24-01-2024, 13:53
Replies: 865
Views: 274,536
Posted By hitman797
@BLACKFIRE69, can you add these two events to the...

@BLACKFIRE69, can you add these two events to the form object.
FForm:

procedure OnActivate(Event: TNotifyEvent);
procedure OnDeactivate(Event: TNotifyEvent);
Forum: Conversion Tutorials 16-11-2023, 10:16
Replies: 865
Views: 274,536
Posted By hitman797
great work, thank you for the update. if we...

great work, thank you for the update.
if we make GUI to this library that will help the authors to save a lot of time.:rolleyes:

for the lock screen

HeadForm.OnActivate(@OnActivate);
...
Forum: Conversion Tutorials 16-11-2023, 09:10
Replies: 865
Views: 274,536
Posted By hitman797
wait for @BLACKFIRE69 to update the library to...

wait for @BLACKFIRE69 to update the library to add those things.
and you missing the music button and counter app running.:o
Forum: Conversion Tutorials 19-10-2023, 08:27
Replies: 865
Views: 274,536
Posted By hitman797
Cool Radiant Shapes

Radiant Shapes:
RadiantShapes.exe (https://www.mediafire.com/file/2f1grv1hx02w66w/RadiantShapes.exe/file)
Forum: Conversion Tutorials 16-10-2023, 07:14
Replies: 865
Views: 274,536
Posted By hitman797
Great work, thanks for the library. I will use...

Great work, thanks for the library.
I will use this library until the update is released to FMXInno. :rolleyes:
Forum: Conversion Tutorials 14-10-2023, 09:20
Replies: 865
Views: 274,536
Posted By hitman797
...get the number of Files in the Recycle Bin and...

...get the number of Files in the Recycle Bin and their total size?

type
PSHQueryRBInfo = ^TSHQueryRBInfo;
TSHQueryRBInfo = packed record
cbSize: DWORD;
// Size of the...
Forum: Conversion Tutorials 14-10-2023, 08:28
Replies: 865
Views: 274,536
Posted By hitman797
Wink Razor12911, He's going to kill me after this for...

Razor12911, He's going to kill me after this for stealing his work.
Forum: Conversion Tutorials 13-10-2023, 09:41
Replies: 865
Views: 274,536
Posted By hitman797
Talking BLACKFIRE69, made this script possible by adding...

BLACKFIRE69, made this script possible by adding many of the components to this library.
and audiofeel, created this scenario using this library.
So, thanks to them
Forum: Conversion Tutorials 09-10-2023, 11:45
Replies: 865
Views: 274,536
Posted By hitman797
FLabel: function GetText: WideString; don't...

FLabel:
function GetText: WideString; don't work.
FTimer:
function GetObject: LongInt;
FFloatAnimation:
function GetObject: LongInt;


procedure OnTimer6(Sender: TObject);
var
Forum: Conversion Tutorials 08-10-2023, 14:07
Replies: 865
Views: 274,536
Posted By hitman797
Great job my friend, thank you. procedure...

Great job my friend, thank you.

procedure TDialogForm.Button1Click(Sender: TObject);
begin
if length(Label1.Text) = 3 then
begin
CreateDir(Label1.Text+Edit1.Text);
Label1.Text:=...
Forum: Conversion Tutorials 08-10-2023, 01:03
Replies: 865
Views: 274,536
Posted By hitman797
A timer is set to update the listbox when we...

A timer is set to update the listbox when we change the path in the label.
Forum: Conversion Tutorials 07-10-2023, 05:52
Replies: 865
Views: 274,536
Posted By hitman797
procedure TDialogForm.Button1Click(Sender:...

procedure TDialogForm.Button1Click(Sender: TObject);
begin
if length(Label1.Text) = 3 then
begin
CreateDir(Label1.Text+Edit1.Text);
Label1.Text:= Label1.Text+Edit1.Text;
end else...
Forum: Conversion Tutorials 07-10-2023, 03:05
Replies: 865
Views: 274,536
Posted By hitman797
System.SysUtils and System.IOUtils Unite: ...

System.SysUtils and System.IOUtils Unite:

procedure TForm8.Button1Click(Sender: TObject);
var
i: Integer;
hFileName: String;
hDirArray, hFileArray: TStringDynArray;
begin
...
Forum: Conversion Tutorials 06-10-2023, 07:22
Replies: 865
Views: 274,536
Posted By hitman797
Wink hi, @BLACKFIRE69 can you add this class to the...

hi, @BLACKFIRE69 can you add this class to the FMXInno.
this class is VCL component in unite VCL.FileCtrl.
I use unite FMX.Platform.Win to Handle the VCL component in FMX Form.
I made example in...
Forum: Conversion Tutorials 06-10-2023, 07:06
Replies: 865
Views: 274,536
Posted By hitman797
Talking copy the procedure. procedure...

copy the procedure.

procedure OnMouseDown(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Single);
begin
//
end;

procedure OnMouseUp(Sender: TObject; Button: TMouseButton;...
Forum: Conversion Tutorials 06-10-2023, 03:41
Replies: 865
Views: 274,536
Posted By hitman797
VerifyHashesFromFile(ExpandConstant('{app}\_Verify...

VerifyHashesFromFile(ExpandConstant('{app}\_Verify\kaos.blake3'), ExpandConstant('{app}\_Verify'), 11, 0,False, @VerifyHashMultiCallback);



function VerifyHashesFromFile(ChecksumFile,...
Forum: Conversion Tutorials 06-10-2023, 01:34
Replies: 865
Views: 274,536
Posted By hitman797
[Files] Source: "Files\FMXInno.dll"; Flags:...

[Files]
Source: "Files\FMXInno.dll"; Flags: dontcopy;



type
TCallback = function(OverallPct, CurrentPct, DiskTotalMB, DiskExtractedMB: Integer; DiskName, CurrentFile, RemainsTime,...
Forum: Conversion Tutorials 05-10-2023, 02:04
Replies: 865
Views: 274,536
Posted By hitman797
Talking hDrive: TDriveComboBox; hFilter:...

hDrive: TDriveComboBox;
hFilter: TFilterComboBox;
hDirectory: TDirectoryListBox;
hFileList: TFileListBox;
Showing results 1 to 25 of 117

 
Forum Jump


All times are GMT -7. The time now is 23:17.


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