Abschlußkommentar
Zunächst großes Dankeschön an alle Mitwirkenden! Ohne diese Hilfe hätte ich es nicht hinbekommen.
Hier noch mal eine vollständige Zusammenfassung wie man den HexEditor von
Markus Stephany zum fliegen bekommt (auch unter TurboDelphi!):
Benötigt werden:
MPDELVER.INC
MPHexEditor.RES
MPHexEditor.PAS
MPHexEditorEx.PAS und zusätzlich die
GRIDS-
Unit
Dann im Projekt:
Delphi-Quellcode:
unit U_Main;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, MPHexEditor, MPHexEditorex, ExtCtrls, Grids;
type
TForm1 =
class(TForm)
procedure FormCreate(Sender: TObject);
private
{ Private-Deklarationen }
MyEditor1: TMPHexEditorEx;
public
{ Public-Deklarationen }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.FormCreate(Sender: TObject);
begin
MyEditor1 := TMPHexEditorEx.Create(Self);
Assert(MyEditor1
is TCustomGrid);
MyEditor1.Parent := self;
MyEditor1.LoadFromFile('
Test1.TXT');
end;
end.
Und schon klappts!
Vielleicht hilft es ja noch jemanden.
Also, schönen Sonntag noch weiters und vielen Dank.
Gruß
Jazzman