?? frmcarwxcha.frm
字號:
BeginProperty Column06
ColumnWidth = 900.284
EndProperty
BeginProperty Column07
ColumnWidth = 854.929
EndProperty
BeginProperty Column08
ColumnWidth = 780.095
EndProperty
BeginProperty Column09
ColumnWidth = 494.929
EndProperty
EndProperty
End
End
Begin VB.Frame Frame1
Caption = " 查詢條件"
ForeColor = &H00FF0000&
Height = 1455
Left = 120
TabIndex = 0
Top = 120
Width = 5970
Begin VB.CommandButton cmdCha
Caption = "查 詢(&F)"
Height = 330
Left = 4845
TabIndex = 12
Top = 255
Width = 975
End
Begin VB.CommandButton cmdExit
Caption = "退 出(&E)"
Height = 345
Left = 4875
TabIndex = 11
Top = 975
Width = 975
End
Begin VB.ComboBox Combo1
Height = 300
ItemData = "frmcarWXcha.frx":0015
Left = 1575
List = "frmcarWXcha.frx":0028
TabIndex = 10
Top = 1035
Width = 735
End
Begin VB.TextBox txtFY
Enabled = 0 'False
Height = 300
Left = 2325
TabIndex = 9
Top = 1020
Width = 2355
End
Begin VB.CheckBox ckfy
Caption = "維修費用:"
Height = 255
Left = 120
TabIndex = 8
Top = 1035
Width = 1215
End
Begin VB.ComboBox cmcp
Enabled = 0 'False
Height = 300
Left = 1575
TabIndex = 3
Top = 270
Width = 1320
End
Begin VB.CheckBox cktime
Caption = "維修日期:"
Height = 180
Left = 120
TabIndex = 2
Top = 705
Width = 1215
End
Begin VB.CheckBox ckcp
Caption = "車牌號碼:"
Height = 255
Left = 120
TabIndex = 1
Top = 270
Width = 1215
End
Begin MSComCtl2.DTPicker dtEnd
Height = 300
Left = 3360
TabIndex = 4
Top = 645
Width = 1335
_ExtentX = 2355
_ExtentY = 529
_Version = 393216
Enabled = 0 'False
Format = 27000833
CurrentDate = 38053
End
Begin MSComCtl2.DTPicker dtStart
Height = 300
Left = 1575
TabIndex = 5
Top = 645
Width = 1335
_ExtentX = 2355
_ExtentY = 529
_Version = 393216
Enabled = 0 'False
Format = 27000833
CurrentDate = 38053
End
Begin VB.Label Label5
Caption = "到"
ForeColor = &H00FF0000&
Height = 255
Left = 3045
TabIndex = 7
Top = 705
Width = 255
End
Begin VB.Label Label6
Caption = "從"
ForeColor = &H00FF0000&
Height = 255
Left = 1335
TabIndex = 6
Top = 720
Width = 255
End
End
End
Attribute VB_Name = "frmcarWXcha"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub ckcp_Click()
If ckcp.Value Then
cmCP.Enabled = True
Else
cmCP.Enabled = False
End If
End Sub
Private Sub ckfy_Click()
If ckfy.Value Then
Combo1.Enabled = True
Combo1.ListIndex = 0
txtFY.Enabled = True
Else
txtFY.Enabled = False
Combo1.Enabled = False
End If
End Sub
Private Sub cktime_Click()
If cktime.Value Then
dtStart.Enabled = True
dtEnd.Enabled = True
Else
dtStart.Enabled = False
dtEnd.Enabled = False
End If
End Sub
Private Sub cmdCha_Click()
Call QingKong
Dim sql As String
Dim scp As String
If ckcp.Value Then
scp = "車牌號碼 like '" & cmCP.Text & "%'"
Else
scp = "車牌號碼 like '%'"
End If
Dim stime As String
If cktime.Value Then
stime = "維修日期 between #" & dtStart.Month & "/" & dtStart.Day & "/" & dtStart.Year & "# and #" & dtEnd.Month & "/" & dtEnd.Day & "/" & dtEnd.Year & "#"
Else
stime = "維修日期 like '%'"
End If
Dim sfy As String
If ckfy.Value Then
sfy = "共計費用 " & Combo1.Text & "" & txtFY & ""
Else
sfy = "共計費用 like '%'"
End If
sql = "select * from 車輛維修表 where " & scp & "and " & stime & "and " & sfy
'MsgBox sql
If sql = "select * from 車輛維修表 where 車牌號碼 like '%'and 維修日期 like '%'and 共計費用 like '%'" Then
Call QingKong
MsgBox "請選擇查詢條件", , "系統提示"
Exit Sub
End If
Set adors = adoCon.Execute(sql)
If adors.EOF Then
Call QingKong
MsgBox "對不起,沒有符合您查詢條件的車輛維修記錄!", , "系統提示"
Else
Adodc1.RecordSource = sql
Adodc1.Refresh
End If
adors.Close
ckcp.Value = 0
cktime.Value = 0
ckfy.Value = 0
End Sub
Private Sub cmdExit_Click()
MDIForm1.StatusBar1.Panels(1).Text = ""
Unload Me
End Sub
Private Sub Form_Load()
frmcarWXcha.Width = 6345
frmcarWXcha.Height = 4395
Call Rebind
'add all cp in the table carWX
Set adors = adoCon.Execute("select distinct 車牌號碼 from 車輛維修表")
On Error Resume Next
Do
cmCP.AddItem adors.Fields(0)
adors.MoveNext
Loop Until adors.EOF
adors.Close
End Sub
Private Sub Rebind()
Frame2.Caption = "車輛維修列表"
Adodc1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\clgl.mdb;Persist Security Info=False"
Adodc1.RecordSource = "select * from 車輛維修表"
Adodc1.Refresh
End Sub
Private Sub QingKong()
Frame2.Caption = "您所要查詢的車輛維修記錄如下:"
Adodc1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\clgl.mdb;Persist Security Info=False"
Adodc1.RecordSource = "select * from 車輛維修表 where 1=0"
Adodc1.Refresh
End Sub
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
cmdExit_Click
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -