【VB开源代码栏目提醒】:网学会员--在 VB开源代码编辑为广大网友搜集整理了:12.3.frm绩等信息,祝愿广大网友取得需要的信息,参考学习。
VERSION 5.00
Begin VB.Form Form2
Caption = "Form2"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form2"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
End
Attribute VB_Name = "Form2"
Attribute
VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Click()
Dim str As Integer
str = MsgBox("确定要删除该数据吗?", 1 + 32 + 256, "删除")
If str = 1 Then
Print "数据已被确认删除"
Else
Print "删除操作已被取消"
End If
End Sub