码迷,mamicode.com
首页 > Windows程序 > 详细

DataGridView复制到Excel格式

时间:2020-02-08 00:22:10      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:GridView   div   for   cells   color   clipboard   row   grid   val   

 

Clipboard.Clear()  清除剪贴板
        If DataGridView2.Rows.Count > 0 Then
            Dim a As New List(Of String)
            For i As Integer = 0 To DataGridView2.Rows.Count - 1
                Dim b(DataGridView2.Columns.Count - 3) As String
                For j As Integer = 1 To DataGridView2.Columns.Count - 2
                    b(j - 1) = DataGridView2.Rows(i).Cells(j).Value
                Next
                a.Add(String.Join(vbTab, b))
            Next

            Clipboard.SetText(String.Join(vbCrLf, a.ToArray))
            a = Nothing
        End If

 

DataGridView复制到Excel格式

标签:GridView   div   for   cells   color   clipboard   row   grid   val   

原文地址:https://www.cnblogs.com/rf8862/p/12275196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!