Foxtable(狐表)用户栏目专家坐堂 → 能否帮助写一下代码?


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

主题:能否帮助写一下代码?

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


加好友 发短信
等级:超级版主 帖子:110574 积分:562760 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2017/11/3 20:32:00 [显示全部帖子]

Dim Book As New XLS.Book '定义一个Excel工作簿
Dim Sheet As XLS.Sheet = Book.Sheets(0) '引用工作簿的第一个工作表
Dim st As XLS.Style = Book.NewStyle '日期列的显示格式
st.Format = "yyyy-MM-dd"
Dim t As Table = Tables("纳税人档案")
Dim c As Col
For i As Integer = 0 To t.Cols.Count -1
    c = t.Cols(i)
    Sheet(0, i).Value = c.Name '指定列标题
    If c.IsDate Then '如果是日期列
        Sheet.Cols(i).Style = st '设置显示格式
    End If
Next

For r As Integer = 0 To t.Rows.Count - 1 '填入数据
    For j As Integer = 0 To t.Cols.Count -1
        c = t.Cols(j)
        If c.IsBoolean Then
            Sheet(r +1, j).Value = IIF(t.rows(r)(t.Cols(j).Name),"是","否")
        Else
            Sheet(r +1, j).Value =t.rows(r)(t.Cols(j).Name)
        End If
    Next
Next
Dim dlg As New SaveFileDialog '定义一个新的SaveFileDialog
dlg.Filter= "Excel文件|*.xls" '设置筛选器
If dlg.ShowDialog = DialogResult.Ok Then
    Book.Save(dlg.FileName)
    Dim Proc As New Process
    Proc.File = dlg.FileName
    Proc.Start()
End If

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


加好友 发短信
等级:超级版主 帖子:110574 积分:562760 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2017/11/3 20:50:00 [显示全部帖子]

If t.rows(r).isnull(t.Cols(j).Name) Then
    Sheet(r +1, j).Value =""
Else
    Sheet(r +1, j).Value = t.rows(r)(t.Cols(j).Name)
End If

 回到顶部