?? 信息查詢.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 + -