📄 main_cxtj_sellfind.frm
字号:
End
Begin MSDataGridLib.DataGrid DataGrid1
Bindings = "main_cxtj_sellfind.frx":0014
Height = 3150
Left = 45
TabIndex = 11
Top = 1200
Width = 11220
_ExtentX = 19791
_ExtentY = 5556
_Version = 393216
AllowUpdate = 0 'False
HeadLines = 1
RowHeight = 15
FormatLocked = -1 'True
BeginProperty HeadFont {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ColumnCount = 9
BeginProperty Column00
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 Column01
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 Column02
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 Column03
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 Column04
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 Column05
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 Column06
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 Column07
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 Column08
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 = 824.882
EndProperty
BeginProperty Column01
ColumnWidth = 1679.811
EndProperty
BeginProperty Column02
ColumnWidth = 1200.189
EndProperty
BeginProperty Column03
ColumnWidth = 945.071
EndProperty
BeginProperty Column04
ColumnWidth = 840.189
EndProperty
BeginProperty Column05
ColumnWidth = 705.26
EndProperty
BeginProperty Column06
ColumnWidth = 705.26
EndProperty
BeginProperty Column07
ColumnWidth = 2025.071
EndProperty
BeginProperty Column08
ColumnWidth = 1739.906
EndProperty
EndProperty
End
End
Attribute VB_Name = "main_cxtj_sellfind"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Activate()
'向combo1添加查询项目列表
Combo1.AddItem ("药品编号")
Combo1.AddItem ("药品名称")
Combo1.AddItem ("批号")
Combo1.AddItem ("规格")
Combo1.AddItem ("产地")
Combo1.AddItem ("客户名称")
Combo1.AddItem ("销售单据号")
Combo1.ListIndex = 1
'向combo2中添加查询条件列表
Combo2.AddItem ("like")
Combo2.AddItem ("=")
Combo2.ListIndex = 0
'汇总记录、数量、金额
Adodc2.RecordSource = "select count(*)as 品种,sum(数量)as 数量1,sum(金额)as 金额1 from tb_sell_detailed"
Adodc2.Refresh
If Adodc2.Recordset.Fields(0) <> "" Then Labpz.Caption = Adodc2.Recordset.Fields(0) Else Labpz.Caption = 0
If Adodc2.Recordset.Fields(1) <> "" Then Labsl.Caption = Adodc2.Recordset.Fields(1) Else Labsl.Caption = 0
If Adodc2.Recordset.Fields(2) <> "" Then Labje.Caption = Format(Adodc2.Recordset.Fields(2), "0.00") Else Labje.Caption = "0.00"
DTP1.Value = Date - 30
DTP2.Value = Date
End Sub
Private Sub Comfind_Click() '查询统计商品销售信息
If Check1(0).Value = 0 And Check1(1).Value = 1 Then
Select Case Combo2.Text
Case Is = "like"
Adodc1.RecordSource = "select * from tb_sell_detailed where (tb_sell_detailed." & Combo1.Text & " like'%'+ '" + Text1.Text + "'+'%')"
Adodc1.Refresh
Adodc2.RecordSource = "select count(*)as pz,sum(数量)as 数量1,sum(金额)as 金额1 from tb_sell_detailed where (tb_sell_detailed." & Combo1.Text & " like +'%'+ '" + Text1.Text + "'+'%')"
Adodc2.Refresh
Case Is = "="
Adodc1.RecordSource = "select * from tb_sell_detailed where (tb_sell_detailed." & Combo1.Text & " = '" + Text1.Text + "')"
Adodc1.Refresh
Adodc2.RecordSource = "select count(*)as pz,sum(数量)as 数量1,sum(金额)as 金额1 from tb_sell_detailed where (tb_sell_detailed." & Combo1.Text & " = '" + Text1.Text + "')"
Adodc2.Refresh
End Select
End If
If Check1(0).Value = 1 And Check1(1).Value = 0 Then
Adodc1.RecordSource = "select * from tb_sell_detailed where 销售日期 between '" + Str(DTP1.Value) + "'AND '" + Str(DTP2.Value) + "'"
Adodc1.Refresh
Adodc2.RecordSource = "select count(*)as pz,sum(数量)as 数量1,sum(金额)as 金额1 from tb_sell_detailed where 销售日期 between '" + Str(DTP1.Value) + "'AND '" + Str(DTP2.Value) + "'"
Adodc2.Refresh
End If
If Check1(0).Value = 1 And Check1(1).Value = 1 Then
Select Case Combo2.Text
Case Is = "like"
Adodc1.RecordSource = "select * from tb_sell_detailed where (tb_sell_detailed." & Combo1.Text & " like'%'+ '" + Text1.Text + "'+'%'and 销售日期 between '" + Str(DTP1.Value) + "'AND '" + Str(DTP2.Value) + "')"
Adodc1.Refresh
Adodc2.RecordSource = "select count(*)as pz,sum(数量)as 数量1,sum(金额)as 金额1 from tb_sell_detailed where (tb_sell_detailed." & Combo1.Text & " like +'%'+ '" + Text1.Text + "'+'%'and 销售日期 between '" + Str(DTP1.Value) + "'AND '" + Str(DTP2.Value) + "')"
Adodc2.Refresh
Case Is = "="
Adodc1.RecordSource = "select * from tb_sell_detailed where (tb_sell_detailed." & Combo1.Text & " = '" + Text1.Text + "'and 销售日期 between '" + Str(DTP1.Value) + "'AND '" + Str(DTP2.Value) + "')"
Adodc1.Refresh
Adodc2.RecordSource = "select count(*)as pz,sum(数量)as 数量1,sum(金额)as 金额1 from tb_sell_detailed where (tb_sell_detailed." & Combo1.Text & " = '" + Text1.Text + "'and 销售日期 between '" + Str(DTP1.Value) + "'AND '" + Str(DTP2.Value) + "')"
Adodc2.Refresh
End Select
End If
If Adodc2.Recordset.Fields(0) <> "" Then Labpz.Caption = Adodc2.Recordset.Fields(0) Else Labpz.Caption = 0
If Adodc2.Recordset.Fields(1) <> "" Then Labsl.Caption = Adodc2.Recordset.Fields(1) Else Labsl.Caption = 0
If Adodc2.Recordset.Fields(2) <> "" Then Labje.Caption = Format(Adodc2.Recordset.Fields(2), "0.00") Else Labje.Caption = "0.00"
End Sub
Private Sub Comend_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -