.
The PrintWindow function copies a visual window into the specified device context (DC), typically a printer DC.
7/24/2013 2:55:02 AM - -88.159.15.38
.
static extern bool PrintWindow(IntPtr hwnd, IntPtr hDC, uint nFlags);
.
Private Shared Function PrintWindow(ByVal hwnd As IntPtr, ByVal hDC As IntPtr, ByVal nFlags As UInteger) As Boolean
.
bool success = PrintWindow(form.Handle, dc, 0);
.
PrintWindow Me.hWnd, Me.hDC, 0
.