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

Windows编程

开发平台:

Visual C++

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   1224
  5.    ClientLeft      =   48
  6.    ClientTop       =   336
  7.    ClientWidth     =   9276
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   1224
  10.    ScaleWidth      =   9276
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.TextBox Text1 
  13.       Height          =   372
  14.       Left            =   120
  15.       TabIndex        =   2
  16.       Top             =   720
  17.       Width           =   9012
  18.    End
  19.    Begin VB.CommandButton Command1 
  20.       Caption         =   "Go!"
  21.       Default         =   -1  'True
  22.       Height          =   372
  23.       Left            =   4320
  24.       TabIndex        =   0
  25.       Top             =   120
  26.       Width           =   972
  27.    End
  28.    Begin VB.Label Label1 
  29.       Caption         =   "objref:"
  30.       Height          =   252
  31.       Left            =   120
  32.       TabIndex        =   1
  33.       Top             =   360
  34.       Width           =   1572
  35.    End
  36. End
  37. Attribute VB_Name = "Form1"
  38. Attribute VB_GlobalNameSpace = False
  39. Attribute VB_Creatable = False
  40. Attribute VB_PredeclaredId = True
  41. Attribute VB_Exposed = False
  42. Private Sub Command1_Click()
  43. Dim x As Component.InsideCOM
  44. Set x = GetObject("objref:" & Text1.Text)
  45. MsgBox x.GetSum
  46. End Sub