📄 frmdeldata.frm
字号:
VERSION 5.00
Begin VB.Form frmDelData
BorderStyle = 3 'Fixed Dialog
Caption = "删除冗余数据"
ClientHeight = 1170
ClientLeft = 45
ClientTop = 330
ClientWidth = 4680
Icon = "frmDelData.frx":0000
LinkTopic = "Form3"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1170
ScaleWidth = 4680
ShowInTaskbar = 0 'False
StartUpPosition = 1 '所有者中心
WhatsThisButton = -1 'True
WhatsThisHelp = -1 'True
Begin VB.CheckBox Check1
Caption = "删除已经丢失的图书入册记录"
Height = 495
Left = 240
TabIndex = 2
Top = 120
Width = 2655
End
Begin VB.CommandButton cmdOK
Caption = "确定"
Default = -1 'True
Height = 360
Left = 3240
TabIndex = 0
Top = 120
Width = 1215
End
Begin VB.CommandButton cmdCancel
Cancel = -1 'True
Caption = "取消"
Height = 360
Left = 3240
TabIndex = 1
Top = 600
Width = 1215
End
End
Attribute VB_Name = "frmDelData"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdCancel_Click()
Unload Me
End Sub
Private Sub cmdOK_Click()
If CBool(Check1.Value) Then mCdt.DelLoseBook
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -