cqy 发表于 2006-1-23 13:42:00

求助:子程序A如何传变量给子程序B

子程序A调用子程序B,如何传变量给子程序B?

zhuxuhong 发表于 2006-1-23 13:53:00

<DIV>&nbsp;</DIV>
<DIV>写函数</DIV>
<DIV>function aa(byval var as integer)</DIV>
<DIV>..........................&nbsp;&nbsp;&nbsp; </DIV>
<DIV>end function</DIV>
<DIV>&nbsp;</DIV>
<DIV>在A中你可以</DIV>
<DIV>call aa(5)</DIV>

cqy 发表于 2006-1-23 14:25:00

在B中怎么办?

mikewolf2k 发表于 2006-1-23 18:57:00

cqy发表于2006-1-23 14:25:00static/image/common/back.gif在B中怎么办?

<BR>一样的啊,带参数就行。

cqy 发表于 2006-1-24 16:11:00

花了许多时间,仍没解决。

fjfhgdwfn 发表于 2006-1-24 17:40:00

不行就定义一个全局的啊

cqy 发表于 2006-1-25 16:25:00

多谢各位指教,定义全局可以解决该问题。
页: [1]
查看完整版本: 求助:子程序A如何传变量给子程序B