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

Windows编程

开发平台:

Visual C++

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    AutoRedraw      =   -1  'True
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   3060
  6.    ClientLeft      =   48
  7.    ClientTop       =   324
  8.    ClientWidth     =   3936
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   3060
  11.    ScaleWidth      =   3936
  12.    StartUpPosition =   3  'Windows Default
  13. End
  14. Attribute VB_Name = "Form1"
  15. Attribute VB_GlobalNameSpace = False
  16. Attribute VB_Creatable = False
  17. Attribute VB_PredeclaredId = True
  18. Attribute VB_Exposed = False
  19. Private Sub Form_Click()
  20. Dim myPrimeFactory As IPrimeFactory
  21. Dim myPrime As IPrime
  22. ' Call MkParseDisplayName
  23. ' Replace hostname with name of machine on which component is registered
  24. Set myPrimeFactory = GetObject("host:hostname!clsid:10000013-0000-0000-0000-000000000001")
  25. ' Call IPrimeFactory::CreatePrime
  26. Set myPrime = myPrimeFactory.CreatePrime(7)
  27. Dim Count As Integer
  28. For Count = 0 To 10
  29.     ' Call IPrime::GetNextPrime
  30.     Print myPrime.GetNextPrime
  31. Next
  32. End Sub