如何将TYPE类型的变量在类模块中作为参数传递
XPhao 2003-03-14 09:03:30 假设有一公用变量
public type g_udeS
s1 as string
s2 as integer
end type
假设有一类模块
private m_arrS() as g_udeS
能否把类模块(g_clspub)添加一属性
public property let S (i_udeS as g_udeS)
m_arrS=S
end property
然后通过在某个窗体模块中,实现以下做法
private m_arrS() as g_udeS
g_clspub.S=m_arrS
请赐教,方法解决马上给分,谢谢!