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

Windows编程

开发平台:

Visual C++

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   2508
  5.    ClientLeft      =   48
  6.    ClientTop       =   324
  7.    ClientWidth     =   3744
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   2508
  10.    ScaleWidth      =   3744
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.CommandButton Command1 
  13.       Caption         =   "Command1"
  14.       Height          =   492
  15.       Left            =   600
  16.       TabIndex        =   0
  17.       Top             =   840
  18.       Width           =   1212
  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. On Error GoTo MyHandler
  28. Dim Test As New Component.InsideCOM
  29. Print Test.Sum(4, 3) ' Everything is OK
  30. Print Test.Sum(-1, 5) ' Raises exception
  31. Exit Sub
  32. MyHandler: ' Exception transfers execution control here
  33. MsgBox Err.Description ' Displays: Negative numbers not allowed
  34. End Sub