VBPersistClient.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    =   2496
  6.    ClientLeft      =   48
  7.    ClientTop       =   336
  8.    ClientWidth     =   3744
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   2496
  11.    ScaleWidth      =   3744
  12.    StartUpPosition =   3  'Windows Default
  13.    Begin VB.CommandButton Command1 
  14.       Caption         =   "Command1"
  15.       Height          =   372
  16.       Left            =   1440
  17.       TabIndex        =   0
  18.       Top             =   1080
  19.       Width           =   972
  20.    End
  21. End
  22. Attribute VB_Name = "Form1"
  23. Attribute VB_GlobalNameSpace = False
  24. Attribute VB_Creatable = False
  25. Attribute VB_PredeclaredId = True
  26. Attribute VB_Exposed = False
  27.  Private Sub Command1_Click()
  28. Dim ref As New InsideCOM
  29. Print ref.SumPersist
  30. Print ref.Sum(3, 4)
  31. Dim pb As New PropertyBag
  32. pb.WriteProperty "Test", "Guy"
  33. pb.WriteProperty "COM+", ref
  34.   Print pb.Contents
  35. Dim newref As InsideCOM
  36.  Set newref = pb.ReadProperty("COM+")
  37. Print newref.SumPersist
  38. End Sub