BEEPER.FRM
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. VERSION 4.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   3795
  5.    ClientLeft      =   1140
  6.    ClientTop       =   1515
  7.    ClientWidth     =   6315
  8.    Height          =   4200
  9.    Left            =   1080
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   3795
  12.    ScaleWidth      =   6315
  13.    Top             =   1170
  14.    Width           =   6435
  15.    Begin VB.CommandButton Command1 
  16.       Caption         =   "Beep"
  17.       Height          =   1095
  18.       Left            =   1680
  19.       TabIndex        =   0
  20.       Top             =   480
  21.       Width           =   2295
  22.    End
  23. End
  24. Attribute VB_Name = "Form1"
  25. Attribute VB_Creatable = False
  26. Attribute VB_Exposed = False
  27. Dim x As New Beeper
  28. Private Sub Command1_Click()
  29. x.Beep
  30. Dim str As Variant
  31. For Each str In x
  32.     MsgBox str
  33. Next
  34. End Sub