public partial class PatiCtlPacsReport : UserControl
{
private const int GWL_STYLE = (-16);
private const int WS_VISIBLE = 0x10000000 | 0x00800000 | 0x02000000 | 0x01000000;
private const int WS_VISIBLE2 = 0x40000000 | 0x00800000 | 0x02000000 | 0x01000000 | 0x10000000;
[DllImport("User32.dll", EntryPoint = "SetParent")]
private static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent);
[DllImport("user32.dll", EntryPoint = "ShowWindow")]
private static extern int ShowWindow(IntPtr hwnd, int nCmdShow);
[DllImport("user32.dll", EntryPoint = "FindWindow")]
public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
[DllImport("user32.dll", EntryPoint = "SetWindowLong", CharSet = CharSet.A