Prvni verze na Git

This commit is contained in:
2026-04-07 18:23:56 +02:00
parent d314d0524b
commit c0aa420ae0
92 changed files with 59472 additions and 2 deletions

32
frmUnit4.pas Normal file
View File

@ -0,0 +1,32 @@
unit frmUnit4;
interface
uses
Winapi.Windows, System.Classes, Vcl.Forms, Vcl.Controls, Vcl.StdCtrls,
ddPlugin_TLB;
type
TformDodavky = class(TForm)
btnOK: TButton;
procedure btnOKClick(Sender: TObject);
private
public
Helios: IHelios;
idOrg: integer;
end;
var
formDodavky: TformDodavky;
implementation
uses ComObjekt, helUtils;
{$R *.dfm}
procedure TformDodavky.btnOKClick(Sender: TObject);
begin
Close;
end;
end.