T
tianrui
Unregistered / Unconfirmed
GUEST, unregistred user!
各位高手:
小弟刚学delphi,有许多问题请教,望赐教。
1,下载的控件我怎么安装不上去?
我不管安装什么控件,总是提示 file not found:"AnaClock.dcu".
AnaClock.dcu到底是什么?我到哪去找呀!!!
2,下载的控件中总有一些Demo,它是干什么用的?怎么看?
3,如果我有一个程序的原代码,我怎么编译并运行它?
4,现有一个程序如下:
unit ExpUnit;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
ExtCtrls,StdCtrls;
type
TExample = class(TForm)
SetButton:Tbutton;
FontButton:Tbutton;
Edit1:TEdit;
Resultpanel:Tpanel;
panelfont:tFontDialog;
procedure setbuttonclick(sender:Tobject);
procedure fontbuttonclick(sender:tobject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Example:TExample;
implementation
{$R *.DFM}
procedure TExample.setbuttonclick(sender:tobject);
begin
resultpanel.caption:edit1.text:
end.
(这个程序下面还有一些,我就不写了)
在编译时提示:[Error] Unit1.pas(31): Undeclared identifier: 'caption'
这是怎么回事。
小弟刚学delphi,有许多问题请教,望赐教。
1,下载的控件我怎么安装不上去?
我不管安装什么控件,总是提示 file not found:"AnaClock.dcu".
AnaClock.dcu到底是什么?我到哪去找呀!!!
2,下载的控件中总有一些Demo,它是干什么用的?怎么看?
3,如果我有一个程序的原代码,我怎么编译并运行它?
4,现有一个程序如下:
unit ExpUnit;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
ExtCtrls,StdCtrls;
type
TExample = class(TForm)
SetButton:Tbutton;
FontButton:Tbutton;
Edit1:TEdit;
Resultpanel:Tpanel;
panelfont:tFontDialog;
procedure setbuttonclick(sender:Tobject);
procedure fontbuttonclick(sender:tobject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Example:TExample;
implementation
{$R *.DFM}
procedure TExample.setbuttonclick(sender:tobject);
begin
resultpanel.caption:edit1.text:
end.
(这个程序下面还有一些,我就不写了)
在编译时提示:[Error] Unit1.pas(31): Undeclared identifier: 'caption'
这是怎么回事。