Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/04/2005, 11:43
Avatar de jrp01
jrp01
 
Fecha de Ingreso: mayo-2004
Ubicación: México
Mensajes: 2.702
Antigüedad: 20 años, 8 meses
Puntos: 0
Bueno he buscado y se puede con el printdialog pero me pone este error al mostrarlo:



Este es el codigo
Código:
        Dim prDocument As New PrintDocument
....
        With PDialog
            Try
                .Document = prDocument
                .AllowPrintToFile = True
                .AllowSelection = True
                .AllowSomePages = True
                .PrintToFile = False
                .ShowHelp = True
                .ShowNetwork = True
                .ShowDialog() <--Aqui
            Catch ex As Exception
                MsgBox(ex.ToString())
            End Try
        End With
¿Que puede ser?