Skip to content

Commit

Permalink
add Delphi FMX project TDirectory_CreateDirectory_Check
Browse files Browse the repository at this point in the history
  • Loading branch information
DeveloppeurPascal committed Oct 3, 2022
1 parent 69075b3 commit 6d752fa
Show file tree
Hide file tree
Showing 6 changed files with 1,850 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ Give users names on first memo field, click the button and copy/paste the users/

Of course change the domaine name "mesimf371818.ovh" hard coded in the source before doing anything with this program.

## TDirectory_CreateDirectory_Check

Test methods TDirectory.CreateDirectory(), TDirectory.Delete() and the TPath.GetXXXPath() for Delphi programs on all available platforms.

## tirages_au_sort

To attribute gains in a lotery depending on the number of participants and gifts.
Expand Down
3 changes: 3 additions & 0 deletions TDirectory_CreateDirectory_Check/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# TDirectory_CreateDirectory_Check

Test methods TDirectory.CreateDirectory(), TDirectory.Delete() and the TPath.GetXXXPath() for Delphi programs on all available platforms.
14 changes: 14 additions & 0 deletions TDirectory_CreateDirectory_Check/src/Project1.dpr
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
program Project1;

uses
System.StartUpCopy,
FMX.Forms,
Unit1 in 'Unit1.pas' {Form1};

{$R *.res}

begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
Loading

0 comments on commit 6d752fa

Please sign in to comment.