📄 frmqumx.frm
字号:
VERSION 5.00
Object = "{67397AA1-7FB1-11D0-B148-00A0C922E820}#6.0#0"; "MSADODC.OCX"
Object = "{CDE57A40-8B86-11D0-B3C6-00A0C90AEA82}#1.0#0"; "MSDATGRD.OCX"
Begin VB.Form frmQumx
Caption = "查询家庭收支明细"
ClientHeight = 4365
ClientLeft = 60
ClientTop = 345
ClientWidth = 6375
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4365
ScaleWidth = 6375
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton retCom
Caption = "返回"
Height = 615
Left = 5400
TabIndex = 9
Top = 3240
Width = 855
End
Begin VB.Frame Frame1
Caption = "设置查询条件"
Height = 1335
Left = 240
TabIndex = 1
Top = 2880
Width = 5055
Begin VB.CommandButton selcmd2
Caption = "重置"
Height = 375
Left = 3840
TabIndex = 8
Top = 840
Width = 975
End
Begin VB.CommandButton selcmd1
Caption = "确定"
Height = 375
Left = 3840
TabIndex = 7
Top = 240
Width = 975
End
Begin VB.TextBox Text1
Height = 375
Index = 1
Left = 2280
TabIndex = 6
Top = 720
Width = 1335
End
Begin VB.ComboBox Combo1
Height = 315
ItemData = "frmQumx.frx":0000
Left = 840
List = "frmQumx.frx":0016
TabIndex = 5
Top = 720
Width = 1335
End
Begin VB.TextBox Text1
Height = 375
Index = 0
Left = 840
TabIndex = 3
Top = 240
Width = 1335
End
Begin VB.Label Label1
Caption = "金额"
Height = 375
Index = 1
Left = 120
TabIndex = 4
Top = 720
Width = 615
End
Begin VB.Label Label1
Caption = "日期"
Height = 375
Index = 0
Left = 120
TabIndex = 2
Top = 240
Width = 615
End
End
Begin MSDataGridLib.DataGrid DataGrid1
Bindings = "frmQumx.frx":0030
Height = 2655
Left = 120
TabIndex = 0
Top = 120
Width = 6135
_ExtentX = 10821
_ExtentY = 4683
_Version = 393216
AllowUpdate = 0 'False
HeadLines = 1
RowHeight = 15
BeginProperty HeadFont {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ColumnCount = 2
BeginProperty Column00
DataField = ""
Caption = ""
BeginProperty DataFormat {6D835690-900B-11D0-9484-00A0C91110ED}
Type = 0
Format = ""
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 1033
SubFormatType = 0
EndProperty
EndProperty
BeginProperty Column01
DataField = ""
Caption = ""
BeginProperty DataFormat {6D835690-900B-11D0-9484-00A0C91110ED}
Type = 0
Format = ""
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 1033
SubFormatType = 0
EndProperty
EndProperty
SplitCount = 1
BeginProperty Split0
BeginProperty Column00
EndProperty
BeginProperty Column01
EndProperty
EndProperty
End
Begin MSAdodcLib.Adodc Adodc1
Height = 330
Left = 120
Top = 0
Visible = 0 'False
Width = 5295
_ExtentX = 9340
_ExtentY = 582
ConnectMode = 0
CursorLocation = 3
IsolationLevel = -1
ConnectionTimeout= 15
CommandTimeout = 30
CursorType = 3
LockType = 3
CommandType = 8
CursorOptions = 0
CacheSize = 50
MaxRecords = 0
BOFAction = 0
EOFAction = 0
ConnectStringType= 3
Appearance = 1
BackColor = -2147483643
ForeColor = -2147483640
Orientation = 0
Enabled = -1
Connect = "DSN=FAM"
OLEDBString = ""
OLEDBFile = ""
DataSourceName = "FAM"
OtherAttributes = ""
UserName = "admin"
Password = ""
RecordSource = "select * from szb"
Caption = "Adodc1"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
_Version = 393216
End
End
Attribute VB_Name = "frmQumx"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub retCom_Click()
Unload Me
End Sub
Private Sub selcmd1_Click() '确定
If Trim(Text1(0).Text) <> "" Then
If Not IsDate(Trim(Text1(0).Text)) Then
MsgBox "日期输入错误,应为yyyy-mm-dd类型", vbOKOnly, "信息提示"
Text1(0).SetFocus
Exit Sub
End If
End If
If (Trim(Combo1.Text) = "" And Trim(Text1(1).Text) <> "" Or _
(Trim(Combo1.Text)) <> "" And Trim(Text1(1).Text) = "") Then
MsgBox "金额项输入不完整", vbOKOnly, "信息提示"
Text1(0).SetFocus
Exit Sub
End If
condstr = "" '条件表达式
If Trim(Text1(0).Text) <> "" Then
If sondstr = "" Then
sondstr = "日期='" + Format(Trim(Text1(0).Text), "yyyy-mm-dd") + "'"
Else
condstr = condstr + "and 日期='" + Format(Trim(Text1(0).Text), "yyyy-mm-dd") + "'"
End If
End If
If Trim(Text1(1).Text) <> "" Then
If sondstr = "" Then
sondstr = "金额='" + Trim(Combo1.Text) + Trim(Text1(1).Text)
Else
condstr = condstr + "and 金额" + Trim(Combo1.Text) + Trim(Text1(1).Text)
End If
End If
If condstr <> "" Then '有条件
Adodc1.RecordSource = "select * from szb where" + condstr
Adodc1.Refresh
Else '无条件
Adodc1.RecordSource = "select * from szb"
Adodc1.Refresh
End If
recs = Adodc1.Recordset.RecordCount
If recs = 0 Then
MsgBox "没有任何满足条件的记录", vbOKOnly, "信息提示"
End If
End Sub
Private Sub selcmd2_Click()
Text1(0).Text = ""
Text1(1).Text = "'"
Combo1.Text = ""
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -