@mkinzler: Danke, werd ich später mal probieren.
Aber um nochmal auf mein erstes Problem mit dem Erstellen zurückzukommen.
Kann mir jemand sagen, was an diesem Code jetzt falsch ist?
Es kommt nämlich immer noch die oben genannte Meldung:
'Project Project1.exe raised
exception class EResNotFound with message 'Resource TMyFrame not found'. Process stopped. Use Step or Run to continue.'
Delphi-Quellcode:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TMyFrame =
class(TFrame)
end;
TForm1 =
class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
var Frame1: TMyframe;
begin
Frame1:= TMyframe.Create(self);
Frame1.Parent:= Form1;
end;
end.
(Ich hab ihn jetzt einmal auf das Wesentlichste verkleinert)
//Edit: Schreibfehler korrigiert.