Первые уроки Delphi 7 Что не верно тут?
Вот что пишет после компиляции
"Project Project2 exe encountered unhandled exception class Borland Vcl Classes EResNotFound Process stopped Use Step or Run to continue" ---- 1)Что тут не так? 2) " " ковычки или ' ' что используеться из символов? ---- unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, Borland.Vcl.StdCtrls, System.ComponentModel; type TForm1 = class(TForm) Button1: TButton; Label1: TLabel; procedure Label1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.nfm} procedure TForm1.Label1Click(Sender: TObject); begin Label1.Caption:='Первое приложение!'; end; end. |
{$R *.nfm} надо {$R *.dfm}
не может найти описание окошка |
Время: 14:15. |
Время: 14:15.
© OSzone.net 2001-