Z zyljj Unregistered / Unconfirmed GUEST, unregistred user! 1999-05-31 #1 我想定义一个能够在好多表单中使用的公用变量,如何定义?
W wuyi Unregistered / Unconfirmed GUEST, unregistred user! 1999-05-31 #2 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.
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.
X xiaowind Unregistered / Unconfirmed GUEST, unregistred user! 1999-05-31 #3 新建一个如下单元: unit global; interface var gloabelvar1: integer ... implement end;
A amo Unregistered / Unconfirmed GUEST, unregistred user! 1999-05-31 #4 在一个单元的Interface中定义,在其它单元中就可使用了,当然必须先uses。