client.vbs
上传用户:bjlvip
上传日期:2010-02-08
资源大小:744k
文件大小:0k
源码类别:

Windows编程

开发平台:

Visual C++

  1. Dim myRef
  2. Set MyRef = CreateObject("Component.InsideCOM")
  3. MsgBox "Sum(5, 3) = " & myRef.Sum(5, 3)
  4. ' Create a new method on the object.
  5. myRef.CreateNewSum "Hurray"
  6. ' Execute the method added at run time.
  7. ' Calls IDispatchEx::GetDispID followed by 
  8. ' IDispatchEx::InvokeEx.
  9. MsgBox "Hurray(2, 8) = " & myRef.Hurray(2, 8)