UTU
02-04-2007, 01:42
Вот что пишет после компиляции
"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.
"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.