/
Alex-Z
/
E-Library
Обзор
Документация
Войти
/
Alex-Z
/
E-Library
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
LibraryForm.pas
26 строк
407 B
Алексей Замула
create: LibraryForm.dfm, LibraryForm.pas, ParamForm.dfm, ParamForm.pas
19 май 2026, 20:03
Верифицирован
19 май 2026, 20:03
9f9479f
Код
Авторство
О чём код?
unit LibraryForm; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs; type TFLibrary = class(TForm) private { Private declarations } public { Public declarations } end; var FLibrary: TFLibrary; implementation uses MainForm, ZClasses; {$R *.dfm} end.