lstyle = GetWindowLong(bb_hWnd, GWL_STYLE) ' Blitz Windows Style lstyle = lstyle Or WS_CHILD ' Append Child SetWindowLong bb_hWnd, GWL_STYLE, lstyle ' Enact new Style SetParent bb_hWnd, Me.hwnd ' SetParent SetWindowLong bb_hWnd, GWL_HWNDPARENT, Me.hwnd ' Show the window SetWindowPos bb_hWnd, HWND_TOP, 0&, 0&, 152, 112, SWP_NOZORDER Or SWP_NOACTIVATE Or SWP_SHOWWINDOW