标题: 运用函数指针的方法 [打印本页] 作者: jerryshomaro 时间: 2007-4-18 10:31 标题: 运用函数指针的方法 Class Node
Public Onload
End Class
Function GetRefTest1()
msgbox "hello11111"
End Function
Function GetRefTest2()
msgbox "hello22222"
End Function
Set mm = new Node
Set mm.Onload = GetRef("GetRefTest1")
Call mm.ONload
Set mm.Onload = GetRef("GetRefTest2")
Call mm.ONload