首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > VB Dotnet >

急麻烦帮忙看看是什么有关问题!打印DatagridView中的数据出来只有表格没有数据

2012-03-12 
急!麻烦帮忙看看是什么问题!打印DatagridView中的数据出来只有表格没有数据!Private Sub print_Click(ByVa

急!麻烦帮忙看看是什么问题!打印DatagridView中的数据出来只有表格没有数据!
Private Sub print_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles print.Click
  PrintDocument1.Print()
  End Sub

  Private Sub PrintDocument1_PrintPage(ByVal sender As System.Object, ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles PrintDocument1.PrintPage
  Dim myPaintArgs As New PaintEventArgs(e.Graphics, New Rectangle(New Point(0, 0), Me.Size))
  Me.InvokePaint(DataGridView1, myPaintArgs)
  End Sub


[解决办法]
哦。。。我没试过。
要不就轮选各个cell,再drawString好了。。。

热点排行