Dim d1 As Date = e.Form.Controls("U").Value
Dim d2 As Date = e.Form.Controls("V").Value
If d1 = Nothing Or d2 = Nothing Then
MessageBox.Show("日期都不能为空","友情提醒",MessageBoxButtons.OK,MessageBoxIcon.Warning)
Else
With DataTables("生产记录")
.LoadFilter = "日期>=#" & d1 & "# and 日期<=#" & d2 & "#"
.Load()
End With
Dim b As New GroupTableBuilder("统计表2",DataTables("生产记录"))
b.Groups.AddDef("配方名称")
b.Groups.AddDef("原料名称")
b.Totals.AddDef("设定值")
b.Totals.AddDef("实际值")
b.Totals.AddDef("误差值")
b.Build '生成统计表
MainTable = Tables("统计表2")
Tables("窗口1_Table1").DataSource =b.BuildDataSource()
End If
Dim g As New Subtotalgroup
g.Aggregate = AggregateEnum.Sum
g.GroupOn = "配方名称"
g.TotalOn = "设定值,实际值,误差值"
g.Caption = "合计"
With Tables("窗口1_Table1")
.SubtotalGroups.Clear()
.SubtotalGroups.Add(g)
.Subtotal()
End With
With Tables("窗口1_Table1")
.MergeMode = MergeModeEnum.Standard
.MergeCols.Clear()
.MergeCols.Add("配方名称")
.MergeSort = "配方名称"
.AllowMerge = True
End With