1
1
mirror of https://github.com/fast4x/datalock.git synced 2025-06-05 21:49:16 +02:00

Initial Commit

This commit is contained in:
2023-02-02 22:39:42 +01:00
parent bc11aa10c9
commit 09065dd2ce
37 changed files with 7176 additions and 0 deletions

61
udemodlg.pas Normal file
View File

@ -0,0 +1,61 @@
(*
DataLock is a Tool for data protection
Copyright (C) 2022 Rino Russo
https://www.rinorusso.it
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*)
unit udemodlg;
{$mode objfpc}
interface
uses
LCLIntf, LCLType, LMessages, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
type
{ TDemoDlg }
TDemoDlg = class(TForm)
Button1: TButton;
Button2: TButton;
Edit1: TEdit;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
DemoDlg: TDemoDlg;
implementation
{$R *.frm}
{ TDemoDlg }
procedure TDemoDlg.Button1Click(Sender: TObject);
begin
end;
end.