Einzelnen Beitrag anzeigen

Njorl

Registriert seit: 30. Jun 2007
8 Beiträge
 
Delphi 2005 Personal
 
#3

Re: Formular kann nicht geladen werden

  Alt 30. Jun 2007, 16:04
Das einzige was ich noch geladen kriege sind

Delphi-Quellcode:
program App;

uses
  Forms,
  Form in 'Form.pas{Form1};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.
und

Delphi-Quellcode:
unit Form;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls, ExtCtrls;

type
  TForm1 = class(TForm)
    Label1: TLabel;
    Label2: TLabel;
    Label3: TLabel;
    Label4: TLabel;
    Label5: TLabel;
    Label6: TLabel;
    Label7: TLabel;
    Label8: TLabel;
    Label9: TLabel;
    Label10: TLabel;
    Label11: TLabel;
    Label12: TLabel;
    Label13: TLabel;
    Label14: TLabel;
    Label15: TLabel;
    Label16: TLabel;
    Label17: TLabel;
    Label18: TLabel;
    Label19: TLabel;
    Label20: TLabel;
    Label21: TLabel;
    Label22: TLabel;
    apptype: TRadioGroup;
    Raiding: TRadioButton;
    Social: TRadioButton;
    charname: TEdit;
    charclass: TComboBox;
    charrace: TComboBox;
    played: TEdit;
    spec: TEdit;
    armory: TEdit;
    choices: TButton;
    alts: TButton;
    attunements: TGroupBox;
    attkara: TCheckBox;
    attheroics: TCheckBox;
    attnotes: TButton;
    contacts: TButton;
    name: TEdit;
    age: TEdit;
    occupation: TEdit;
    availability: TEdit;
    hours: TButton;
    motivation: TButton;
    gearing: TButton;
    role: TButton;
    history: TButton;
    computer: TButton;
    contact: TButton;
    finish: TButton;
    armorynotes: TButton;
    Label23: TLabel;
  private
    { Private-Deklarationen }
  public
    { Public-Deklarationen }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

end.
  Mit Zitat antworten Zitat