📄 frm_xqtscx.frm
字号:
EndProperty
EndProperty
BeginProperty Column11
DataField = "投诉性质"
Caption = "投诉性质"
BeginProperty DataFormat {6D835690-900B-11D0-9484-00A0C91110ED}
Type = 0
Format = ""
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 2052
SubFormatType = 0
EndProperty
EndProperty
BeginProperty Column12
DataField = "处理意见"
Caption = "处理意见"
BeginProperty DataFormat {6D835690-900B-11D0-9484-00A0C91110ED}
Type = 0
Format = ""
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 2052
SubFormatType = 0
EndProperty
EndProperty
BeginProperty Column13
DataField = "接待员"
Caption = "接待员"
BeginProperty DataFormat {6D835690-900B-11D0-9484-00A0C91110ED}
Type = 0
Format = ""
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 2052
SubFormatType = 0
EndProperty
EndProperty
SplitCount = 1
BeginProperty Split0
BeginProperty Column00
ColumnWidth = 810.142
EndProperty
BeginProperty Column01
ColumnWidth = 794.835
EndProperty
BeginProperty Column02
ColumnWidth = 615.118
EndProperty
BeginProperty Column03
ColumnWidth = 480.189
EndProperty
BeginProperty Column04
ColumnWidth = 929.764
EndProperty
BeginProperty Column05
ColumnWidth = 840.189
EndProperty
BeginProperty Column06
ColumnWidth = 824.882
EndProperty
BeginProperty Column07
ColumnWidth = 884.976
EndProperty
BeginProperty Column08
ColumnWidth = 900.284
EndProperty
BeginProperty Column09
ColumnWidth = 900.284
EndProperty
BeginProperty Column10
ColumnWidth = 824.882
EndProperty
BeginProperty Column11
ColumnWidth = 900.284
EndProperty
BeginProperty Column12
ColumnWidth = 824.882
EndProperty
BeginProperty Column13
ColumnWidth = 824.882
EndProperty
EndProperty
End
End
Begin VB.Frame Frame1
Height = 1305
Left = 120
TabIndex = 0
Top = 315
Width = 6540
Begin VB.Frame Frame3
Height = 660
Left = 4740
TabIndex = 9
Top = 540
Width = 1575
Begin VB.CommandButton Command2
Caption = "退出"
Height = 390
Left = 765
TabIndex = 11
Top = 165
Width = 645
End
Begin VB.CommandButton Command1
Caption = "查询"
Height = 390
Left = 135
TabIndex = 10
Top = 165
Width = 645
End
End
Begin MSComCtl2.DTPicker DTPicker1
Height = 300
Left = 1920
TabIndex = 6
Top = 795
Width = 2565
_ExtentX = 4524
_ExtentY = 529
_Version = 393216
Format = 50331649
CurrentDate = 38209
End
Begin VB.TextBox Text1
Height = 300
Left = 4380
TabIndex = 5
Top = 240
Width = 1950
End
Begin VB.ComboBox Combo2
Height = 300
ItemData = "Frm_xqtscx.frx":0015
Left = 3195
List = "Frm_xqtscx.frx":0025
Style = 2 'Dropdown List
TabIndex = 4
Top = 240
Width = 1170
End
Begin VB.ComboBox Combo1
Height = 300
ItemData = "Frm_xqtscx.frx":0038
Left = 1920
List = "Frm_xqtscx.frx":0042
Style = 2 'Dropdown List
TabIndex = 3
Top = 225
Width = 1275
End
Begin VB.CheckBox Check2
Caption = "按投诉时间查询:"
Height = 465
Left = 120
TabIndex = 2
Top = 690
Width = 1770
End
Begin VB.CheckBox Check1
Caption = "请选择查询条件:"
Height = 300
Left = 135
TabIndex = 1
Top = 225
Width = 1740
End
End
Begin VB.Label Label2
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "投诉信息查询"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 180
Left = 2670
TabIndex = 12
Top = 105
Width = 1185
End
End
Attribute VB_Name = "Frm_xqtscx"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
DTPicker1.Enabled = False
Combo1.Enabled = False
Combo2.Enabled = False
Text1.Enabled = False
End Sub
Private Sub Check1_Click()
If Check1.Value = 1 Then
Combo1.Enabled = True
Combo2.Enabled = True
Text1.Enabled = True
Else
Combo1.Enabled = False
Combo2.Enabled = False
Text1.Enabled = False
End If
End Sub
Private Sub Check2_Click()
If Check2.Value = 1 Then
DTPicker1.Enabled = True
Else
DTPicker1.Enabled = False
End If
End Sub
Private Sub Command1_Click()
If Check1.Value = 1 Then
If Combo2.Text = "like" Then
Adodc1.RecordSource = "select * from tab_tsinfo where " & Combo1.Text & " " & Combo2.Text & " '%" & Text1.Text & "%'"
Adodc1.Refresh
Else
Adodc1.RecordSource = "select * from tab_tsinfo where " & Combo1.Text & " " & Combo2.Text & " '" & Text1.Text & "'"
Adodc1.Refresh
End If
Else
Adodc1.RecordSource = "select * from tab_tsinfo where 投诉时间='" + Str(DTPicker1.Value) + "'"
Adodc1.Refresh
End If
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -