?? 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 + -