Foxtable(狐表)用户栏目专家坐堂 → 动态合成


  共有1504人关注过本帖树形打印复制链接

主题:动态合成

帅哥哟,离线,有人找我吗?
有点甜
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2017/8/16 21:35:00 [显示全部帖子]

 

[此贴子已经被作者于2017/8/16 21:37:26编辑过]

 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2017/8/16 21:55:00 [显示全部帖子]

试试

 

Dim str1 As String = e.Form.Controls("ComboBox1").Value  '选年份
Dim str2 As String = e.Form.Controls("ComboBox2").Value  '选月份
Dim str3 As String = e.Form.Controls("ComboBox2").Value  '选单位
Dim str4 As String = e.Form.Controls("ComboBox3").Value  '选文件名
Dim filter As String = "1=1"
If str2 > "" Then
    filter &= " and 月份 = '" & str2 & "'"
End If
If str3 > "" Then
    filter &= "  and 单位 = '" & str3 & "'"
End If
If str1 > "" Then
    filter &= "  and 年份 = '" & str1 & "'"
End If

Dim Book As New XLS.Book(ProjectPath & "Attachments\" & str4 & ".xls") '打开模板
Dim fl As String = ProjectPath & "Reports\" & str4 & ".xls"
Dim Sheet As XLS.Sheet = Book.Sheets(0)
Sheet(3,9).Value = "<" & filter & ">"  '写入打印条件
Book.Build() '生成报表
Book.Save(fl)
Dim Proc As New Process
Proc.File = fl
Proc.Start()

 

 

[此贴子已经被作者于2017/8/17 10:33:07编辑过]

 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  3楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2017/8/17 10:32:00 [显示全部帖子]

Dim str1 As String = e.Form.Controls("ComboBox1").Value  '选年份
Dim str2 As String = e.Form.Controls("ComboBox2").Value  '选月份
Dim str3 As String = e.Form.Controls("ComboBox2").Value  '选单位
Dim str4 As String = e.Form.Controls("ComboBox3").Value  '选文件名
Dim filter As String = "1=1"
If str2 > "" Then
    filter &= " and 月份 = '" & str2 & "'"
End If
If str3 > "" Then
    filter &= "  and 单位 = '" & str3 & "'"
End If
If str1 > "" Then
    filter &= "  and 年份 = '" & str1 & "'"
End If

Dim Book As New XLS.Book(ProjectPath & "Attachments\" & str4 & ".xls") '打开模板
Dim fl As String = ProjectPath & "Reports\" & str4 & ".xls"
Dim Sheet As XLS.Sheet = Book.Sheets(0)
Sheet(3,9).Value = "<" & filter & ">"  '写入打印条件
Book.Build() '生成报表
Book.Save(fl)
Dim Proc As New Process
Proc.File = fl
Proc.Start()

 


 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  4楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2017/8/17 14:14:00 [显示全部帖子]

实例发上来测试。

 回到顶部