DELPHI BPL ПРИМЕР
BPL (англ. Borland Package Library) — это библиотека пакетов, которые могут быть использованы в приложениях Delphi или C++Builder.
Создание BPL проекта в среде разработки Delphi начинается с выбора пункта меню Файл → Новый → Пакет. Пример кода:
library MyPackage;
uses Classes;
exports
MyProc;
procedure MyProc;
begin
ShowMessage('Hello from MyPackage!');
end;
begin
end.
Вебинар \
Learn to code in Delphi - Part 7 - Input Process Output
Combo Box component in Delphi
Learn to code in Delphi - Part 5 - Labels, Edit Boxes and Spin Edits
Delphi Best Practices: The Top Seven Things you Should be Doing - with Nick Hodges
Learn to code in Delphi - Part 8 - Calculator Example
Learn to code in Delphi - Part 4 - Adding code to our project
Learn to code in Delphi - Part 6 - Variables
List Box component in Delphi
Learn to code in Delphi - Part 3 - Getting started with Objects and Properties