【VB开源代码栏目提醒】:网学会员VB开源代码为您提供Ex7_4.frm参考,解决您在Ex7_4.frm学习中工作中的难题,参考学习。
VERSION 5.00
Begin VB.Form Ex7_4
Caption = "双击事件过程应用"
ClientHeight = 3090
ClientLeft = 60
ClientTop = 450
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3090
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
End
Attribute VB_Name = "Ex7_4"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Click()
Print "************"
Print "您单击了窗体"
Print "************"
End Sub
Private Sub Form_DblClick()
Print "您双击了窗体"
End Sub