864
社区成员
发帖
与我相关
我的任务
分享
Private Sub Command1_Click()
Dim a As KFO.Vector
Set a = New KFO.Vector
MsgBox (a.Size)
End Sub
[/quote]
Private Sub Command1_Click()
Dim a As KFO.Vector
Set a = New KFO.Vector
MsgBox (a.Size)
End Sub
我改成这样写,在没有安装ERP上运行也没有问题。
Private Sub Command1_Click()
Dim a As KFO.Vector
Set a = New KFO.Vector
MsgBox (a.Size)
End Sub
另外,"无法创建组件"KFO.Vector". 仅可在带有<%@ Page aspcompat=true %>页指令的页上创建单元线程组件."
--- 这句话不是已经说的很清楚了吗,要在aspx页面头部加上<%@ Page aspcompat=true %>才可以成功createobject你那个类的对象;