Zitat von
Kroko1999:
ich habe D6 Pro und bei mir gibt es keinerlei Probleme, er komp. und startet einwandfrei!
ja das Kompilieren ist auch kein Problem, das Problem ist wenn Delphi die Box aufruft wo alle Befehle, Variablen der
Unit stehen.
Zitat von
mkinzler:
1.) (Sicher nur tippfehler) müßte es PMyRecord = ^TMyRecord;
heißen.
Aber unter D2006 funktioniert es problemlos.
Ja mir ist auch bewusst das es ein Tippfehler ist, ich wollte nur sagen das Delphi ein Problem mit diesem Code hat.
Ich hab mir das so vorgestellt:
Delphi-Quellcode:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
type
TForm1 =
class(TForm)
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
type
PMyRecord = ^PMyRecord;
// das ist das Problem ..
TMyrecord =
packed record
Value1: PChar;
Value2: Integer;
Value3: ShortString;
Value4: Cardinal;
Value5: Pointer;
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.FormCreate(Sender: TObject);
begin
{ wenn man das hier eintippt kommt die box, und weil man oben PMyRecord = ^PMyReord gemacht hat stürzt Delphi ab wenn
es alle Funktionen auflisten sollte }
Unit1.
end;