SoloCodigo

CLR: .Net / Mono / Boo / Otros CLR => VB .NET => Mensaje iniciado por: cristine en Lunes 14 de Mayo de 2007, 16:22

Título: Imprimir!!
Publicado por: cristine en Lunes 14 de Mayo de 2007, 16:22
Hola a todos!!M toy volviendo loca xa conseguir irmprimir un datagrig...a ver si m podeis ayudar!!Por ahora he conseguido q m imprima el grid, pero sin contenido...todas las celdas vacias!!!!y kiero q m salga todo rellandoooo, el grid completo no se puede ver en el formulario, pero cuand m lo imrpima keiro q sea todo el grid entero!!A ver si alguien sabe sobre sto, plisssssssssssssss...por ahora teng esta parte de cñodigo... :comp:

[CODE]Private Sub ImprimirToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ImprimirToolStripMenuItem.Click
        PrintDialog1.Document = PrintDocument1
        If PrintDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then
            PrintDocument1.DefaultPageSettings.Landscape = True
            PrintDocument1.Print()
        End If
    End Sub

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


Gracias x todo!!!