/
dimferon
/
AstrobloQ
Обзор
Документация
Войти
/
dimferon
/
AstrobloQ
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
source/bio/fbTutorial.pas
40 строк
508 B
glscene
Included sources and data
09 мар 2024, 14:34
09 мар 2024, 14:34
8c41b42
Код
Авторство
О чём код?
unit fbTutorial; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls,Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Buttons, Vcl.ComCtrls, Vcl.ExtCtrls; type TfmTutorial = class(TForm) Panel1: TPanel; Panel2: TPanel; redIntro: TRichEdit; Panel3: TPanel; Panel4: TPanel; btnRun: TBitBtn; private public end; var fmTutorial: TfmTutorial; implementation {$R *.dfm} end.