我使用简单数据网格视图在存储过程中使用select语句显示所有记录...显示的列表视图没问题我想按原样打印出来。我该怎么办 就像我们打印excel床单一样......
提前感谢解决方案..
我填写数据网格视图的逻辑是:
Public Sub FillDataGrid(ByVal myGrid As DataGridView, ByVal Sqlstring As String)
myGrid.Enabled = False
Dim myDbf As New SqlDataAdapter(Sqlstring, myConnection)
Dim myDataset As New DataSet
myDataset.Clear()
myDbf.Fill(myDataset, "Finddata")
myDataset.Tables("Finddata").DefaultView.AllowNew = False
myGrid.DataSource = myDataset.Tables("FindData")
myGrid.AutoResizeColumns()
myGrid.Enabled = True
End Sub
上面的函数将通过传递datagrid&来从模块调用。存储过程参数。