Вверх ↑
Ответов: 5227
Рейтинг: 587
#1: 2020-11-04 08:06:08 ЛС | профиль | цитата
flint2, а то, после второй 0,5
Мне больше нравится универсальное средство.
К примеру вот такой простой модуль делает порт в KOL куда проще (и его можно подпиливать и подпиливать)

unit VCLType;

interface

uses
Kol, Windows;

type
TBitmap = Kol.PBitmap;
TCanvas = Kol.PCanvas;
TFont = Kol.PGraphicTool;
TPen = Kol.PGraphicTool;
TBrush = Kol.PGraphicTool;
TStringList = Kol.PStrListEx;
TList = Kol.PListEx;
TImageList = Kol.PImageList;

TNotifyEvent = Kol.TOnEvent;

const
IntToStr: function (Value: Integer): string = Kol.Int2Str;
StrToInt: function (const Value: String): Integer = Kol.Str2Int;
ColorToRGB: function(Color: TColor): TColor = Kol.Color2RGB;
Point: function(X,Y: Integer): TPoint = Kol.MakePoint;
Rect: function(Left,Top,Right,Bottom: Integer): TRect; stdcall = Kol.MakeRect;
IntToHex: function (Value: DWord; Digits: Integer): string = Kol.Int2Hex;

implementation

initialization

finalization

end.

карма: 4
Мой форум - http://hiasm.bbtalk.me/ схемы, компоненты...
0