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    =   3360
  5.    ClientLeft      =   45
  6.    ClientTop       =   330
  7.    ClientWidth     =   4605
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   3360
  10.    ScaleWidth      =   4605
  11.    StartUpPosition =   3  'Windows Default
  12. End
  13. Attribute VB_Name = "Form1"
  14. Attribute VB_GlobalNameSpace = False
  15. Attribute VB_Creatable = False
  16. Attribute VB_PredeclaredId = True
  17. Attribute VB_Exposed = False
  18. ' Declare the object variable
  19. Dim WithEvents myRef As InsideCOM
  20. Attribute myRef.VB_VarHelpID = -1
  21. Private Sub Form_Load()
  22. ' Instantiate the connectable object
  23. Set myRef = New InsideCOM
  24. End Sub
  25. ' Catch events here...
  26. Private Sub myRef_GotMessage(ByVal Message As Long)
  27. Print Chr(Message)
  28. End Sub