[Lazarus] How to convert Delphi program with TRichEdit?

Werner Pamler werner.pamler at freenet.de
Thu Dec 9 17:57:35 CET 2021


Am 09.12.2021 um 16:19 schrieb Bo Berglund via lazarus:
> How can I use this?

Very easy: just load the file

procedure TForm1.FormCreate(Sender: TObject);
begin
   hex := TMpHexEditor.Create(self);
   hex.Parent := self;
   hex.Align := alClient;
   hex.LoadFromFile('Project1.exe');
end;



More information about the lazarus mailing list