Ich habe nioch Delphhi 2005.
Getestet habe ich das mit einem ganz neu erstellten Formular, nachdem ich das Problem bekommen hatte.
Hier die Daten(Fehler habe ich als Bild angehängt):
DFM:
Code:
object Form1: TForm1
Left = 0
Top = 0
Width = 434
Height = 340
Caption = 'Form1'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Menu = MainMenu1
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object Edit1: TEdit
Left = 160
Top = 136
Width = 65
Height = 21
TabOrder = 0
Text = 'Edit1'
end
object MainMenu1: TMainMenu
Left = 120
Top = 40
object test1: TMenuItem
Caption = 'test'
end
end
end
Unit:
Delphi-Quellcode:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Menus, StdCtrls;
type
TForm1 =
class(TForm)
Edit1: TEdit;
MainMenu1: TMainMenu;
test1: TMenuItem;
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
end.
Projekt:
Delphi-Quellcode:
program Project1;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
[edit=SirThornberry]Delphi-Tags gesetzt - nächstes mal bitte selbst machen - Mfg, SirThornberry[/edit]