📄 信息查询.frm
字号:
VERSION 5.00
Begin VB.Form 信息查询
Caption = "信息管理界面"
ClientHeight = 3780
ClientLeft = 60
ClientTop = 450
ClientWidth = 6630
LinkTopic = "Form1"
MaxButton = 0 'False
ScaleHeight = 3780
ScaleWidth = 6630
StartUpPosition = 3 'Windows Default
Begin VB.Frame Frame1
Caption = "查询窗体"
Height = 2895
Left = 600
TabIndex = 0
Top = 360
Width = 5655
Begin VB.CommandButton Command1
Caption = "查询"
Height = 375
Left = 4320
TabIndex = 8
Top = 840
Width = 1095
End
Begin VB.CommandButton Command2
Caption = "退出"
Height = 375
Left = 4320
TabIndex = 7
Top = 1680
Width = 1095
End
Begin VB.ComboBox Combo1
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 420
Left = 1800
TabIndex = 6
Top = 600
Width = 2055
End
Begin VB.TextBox Text3
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1800
TabIndex = 4
Text = "Text3"
Top = 1800
Width = 2055
End
Begin VB.TextBox Text2
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 420
Left = 1800
TabIndex = 2
Text = "Text2"
Top = 1200
Width = 2055
End
Begin VB.Label Label1
Caption = "查询条件:"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 480
TabIndex = 5
Top = 600
Width = 1335
End
Begin VB.Label Label3
Caption = "终止时间:"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 480
TabIndex = 3
Top = 1800
Width = 1335
End
Begin VB.Label Label2
Caption = "起始时间:"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 480
TabIndex = 1
Top = 1200
Width = 1335
End
End
End
Attribute VB_Name = "信息查询"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim n As Long
If Combo1.ListIndex = 0 Or Combo1.ListIndex = 1 Then
查询结果显示.Show
Else
统计界面.Show
End If
End Sub
Private Sub Data1_Reposition()
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Form_Load()
Combo1.AddItem ("暂扣证件查询")
Combo1.AddItem ("暂扣车辆查询")
Combo1.AddItem ("已处理证件总数")
Combo1.AddItem ("未处理证件总数")
Combo1.AddItem ("已处理车辆总数")
Combo1.AddItem ("未处理车辆总数")
Combo1.AddItem ("处罚金额汇总")
Combo1.ListIndex = 0
Text2.Text = Format(Now, "yyyy-mm-dd")
Text3.Text = Format(Now, "yyyy-mm-dd")
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -