【VB开源代码栏目提醒】:以下是网学会员为您推荐的VB开源代码-Ex2_8.frm,希望本篇文章对您学习有所帮助。
VERSION 5.00
Begin VB.Form Ex2_8
Caption = "Form1"
ClientHeight = 1740
ClientLeft = 60
ClientTop = 450
ClientWidth = 3360
LinkTopic = "Form1"
ScaleHeight = 1740
ScaleWidth = 3360
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "退出"
Height = 375
Left = 840
TabIndex = 0
Top = 600
Width = 1215
End
End
Attribute
VB_Name = "Ex2_8"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim i As Integer
i = MsgBox("是否退出窗体?", vbOKCancel + vbQuestion, "退出")
If i = 1 Then '当按“确定”按钮
End
End If
End Sub