初学者问题(20分)

  • 主题发起人 主题发起人 zyljj
  • 开始时间 开始时间
Z

zyljj

Unregistered / Unconfirmed
GUEST, unregistred user!
我想定义一个能够在好多表单中使用的公用变量,如何定义?
 
new a unit, declear all your global variables there. After that, you
should use that unit where you want use these variables, and you can
use all the variables decleared there.
 
新建一个如下单元:

unit global;

interface

var
gloabelvar1: integer
...

implement

end;
 
在一个单元的Interface中定义,在其它单元中就可使用了,当然必须先uses。
 
多人接受答案了。
 
后退
顶部