📄 frmdelcase.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
Object = "{86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCT2.OCX"
Begin VB.Form frmDelCase
BorderStyle = 3 'Fixed Dialog
Caption = "删除文书"
ClientHeight = 5925
ClientLeft = 45
ClientTop = 330
ClientWidth = 7800
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 5925
ScaleWidth = 7800
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin MSComctlLib.ImageList ImageList1
Left = 1980
Top = 5220
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 24
ImageHeight = 24
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 1
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmDelCase.frx":0000
Key = "Case"
EndProperty
EndProperty
End
Begin VB.Frame Frame
Caption = "选择要删除的文书"
Height = 4995
Left = 210
TabIndex = 1
Top = 120
Width = 7425
Begin MSComCtl2.UpDown UpDown2
Height = 285
Left = 5430
TabIndex = 16
Top = 720
Width = 270
_ExtentX = 450
_ExtentY = 503
_Version = 393216
Enabled = -1 'True
End
Begin MSComCtl2.UpDown UpDown1
Height = 285
Left = 3330
TabIndex = 15
Top = 720
Width = 270
_ExtentX = 450
_ExtentY = 503
_Version = 393216
Enabled = -1 'True
End
Begin VB.CheckBox ChkDate
Caption = "Check2"
Height = 195
Left = 510
TabIndex = 14
Top = 1170
Width = 195
End
Begin VB.CheckBox ChkSSSQ
Caption = "Check1"
Height = 180
Left = 510
TabIndex = 13
Top = 780
Width = 195
End
Begin VB.CommandButton cmdDel
Caption = " 删除(&D)"
Height = 375
Left = 5910
TabIndex = 9
Top = 1050
Width = 1300
End
Begin VB.CommandButton cmdSearch
Caption = " 检索(&F)"
Height = 375
Left = 5910
TabIndex = 8
Top = 300
Width = 1300
End
Begin VB.TextBox txtSSSQ2
Height = 300
Left = 4080
MaxLength = 6
TabIndex = 4
Text = "所属时期2"
Top = 720
Width = 1350
End
Begin VB.TextBox txtSSSQ1
Height = 300
Left = 1980
MaxLength = 6
TabIndex = 3
Text = "所属时期1"
Top = 720
Width = 1350
End
Begin VB.ComboBox cmbQY
Height = 300
Left = 1440
TabIndex = 2
Text = "cmbQY"
Top = 300
Width = 4275
End
Begin MSComCtl2.DTPicker DTPDate2
Height = 300
Left = 4080
TabIndex = 5
Top = 1110
Width = 1650
_ExtentX = 2910
_ExtentY = 529
_Version = 393216
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Format = 20054017
CurrentDate = 36180
End
Begin MSComCtl2.DTPicker DTPDate1
Height = 300
Left = 1980
TabIndex = 6
Top = 1110
Width = 1650
_ExtentX = 2910
_ExtentY = 529
_Version = 393216
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Format = 20054017
CurrentDate = 36180
End
Begin MSComctlLib.ListView lvwCase
Height = 3345
Left = 150
TabIndex = 7
Top = 1500
Width = 7095
_ExtentX = 12515
_ExtentY = 5900
LabelEdit = 1
MultiSelect = -1 'True
LabelWrap = -1 'True
HideSelection = 0 'False
_Version = 393217
Icons = "ImageList1"
SmallIcons = "ImageList1"
ForeColor = -2147483640
BackColor = -2147483643
BorderStyle = 1
Appearance = 1
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
NumItems = 0
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "文书导入日期 到"
Height = 180
Left = 810
TabIndex = 12
Top = 1170
Width = 3150
End
Begin VB.Label lblSSSQ
AutoSize = -1 'True
Caption = "文书所属时期 到"
Height = 180
Left = 810
TabIndex = 11
Top = 780
Width = 3150
End
Begin VB.Label lblQY
AutoSize = -1 'True
Caption = "文书所属企业"
Height = 180
Left = 300
TabIndex = 10
Top = 360
Width = 1080
End
End
Begin VB.CommandButton cmdSure
Caption = " 确定(&S)"
Height = 375
Left = 5970
TabIndex = 0
Top = 5340
Width = 1500
End
End
Attribute VB_Name = "frmDelCase"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim rstImage As ADODB.Recordset
Private Sub cmbQY_KeyPress(KeyAscii As Integer)
If KeyAscii = vbKeyReturn Then
If Len(CStr(Val(cmbQY.Text))) = QYBMLength Then
If QYBM_NSRMC(Trim(cmbQY.Text)) <> vbNullString Then
cmbQY.Text = QYBM_NSRMC(Trim(cmbQY.Text))
cmdSearch.SetFocus
End If
End If
End If
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -