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    =   2505
  5.    ClientLeft      =   45
  6.    ClientTop       =   330
  7.    ClientWidth     =   3750
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   2505
  10.    ScaleWidth      =   3750
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.CommandButton Command1 
  13.       Caption         =   "Command1"
  14.       Height          =   492
  15.       Left            =   1800
  16.       TabIndex        =   0
  17.       Top             =   840
  18.       Width           =   1332
  19.    End
  20. End
  21. Attribute VB_Name = "Form1"
  22. Attribute VB_GlobalNameSpace = False
  23. Attribute VB_Creatable = False
  24. Attribute VB_PredeclaredId = True
  25. Attribute VB_Exposed = False
  26. Private Sub Command1_Click()
  27. Dim myRef As New Component.InsideCOM
  28. MsgBox "myRef.Sum(5, 6) returns " & myRef.Sum(5, 6)
  29. End Sub