菜鸟问题,请教高手(50分)

  • 主题发起人 主题发起人 acee
  • 开始时间 开始时间
A

acee

Unregistered / Unconfirmed
GUEST, unregistred user!
在delphi中
[Application.CreateForm(TFORM1, FORM1);]
[FORM2:TFORM2;FORM2:=TFORM2.CREATE(APPLICATION);]
[FORM2:TFORM2;FORM2:=TFORM2.CREATE(nil);]
[FORM2:TFORM2;FORM2:=TFORM2.CREATE(self);]
等四种写法有何区别?

我编译时,出现以下提示,请问是何原因,如何解决?
class Toxlabel not found
Ignore the error and continue?
Note:Ignoring the error may
cause components to be deleted
or property values to be lost

一般情况下当我的鼠标指针指向DPR或PAS中一个变量或方法,属性等什么对象的时候,在指针下会出现一个长的白条,告诉我这个对象来自于哪个PAS及是什么类型等,但在有的DPR或PAS中鼠标指针只是闪几下却不出现这个白条,这是为什么,怎样才能让它出现?急!!

为什么当我在PRIVATE或PUBLIC中添加自定义过程或函数时会出现
unsatisfied forward or external declaration:'TForm1.max'等错误?
可不可以在一个按钮的ONCLICK事件中调用另一个按钮的ONCLICK事件,怎样用?
 
>我编译时,出现以下提示,请问是何原因,如何解决?
>class Toxlabel not found
>Ignore the error and continue?
>Note:Ignoring the error may
>cause components to be deleted
>or property values to be lost
您是否安装了venus控件,如果是的话,就把路径加上去。
>为什么当我在PRIVATE或PUBLIC中添加自定义过程或函数时会出现
>unsatisfied forward or external declaration:'TForm1.max'等错误?
您所定义的过程或函数是系统过程或函数。
>可不可以在一个按钮的ONCLICK事件中调用另一个按钮的ONCLICK事件,怎样用?
可以,在按钮的onclick中写上OtherButtonClick(sender)(另一控件的onclick事件);
您也可以直接在按钮的事件页的onclick上选择其他控件的onclick事件:选择按钮→转到
事件页→单击onclick出现下拉菜单→选择您要的onclick事件。
 
maolu28:您好,我在〔tools〕|[environment options]|[library]|[directions]|[library path]
设好venus5pk.bpl的路径后,再编译仍出现上述问题,不知是何原因,另请问venus控件是
作什么用的?
 
可不》》可以在一个按钮的ONCLICK事件中调用另一个按钮的ONCLICK事件,怎样用?
可以的!
假如A按钮的ONCLICK已经存在,
那么你在B按钮的ONCLICK事件的下拉框中会看见A按钮的ONCLICK事件名称,
选择他,这样2个按钮会公共一个过程的!
试一试吧~ [:D]
 
to acee:
  除了venus5pk.bpl的路径外,还有其他库文件:如*.dcu或*.pas。
  按钮设计。
 
多人接受答案了。
 
后退
顶部