/** Same as above, but lets you insert non-VWindow windows into the
	control.*/
	VBOOL		InsertWindow(	HWND			hWnd,
								VSTRING_CONST	pszText = NULL,
								VINT			nIndex = -1,
								VUINT			nStyle =
												RBBS_GRIPPERALWAYS |
												RBBS_CHILDEDGE |
												RBBS_NOVERT) const
		{ return InsertWindow(VTempWindow(hWnd), pszText, nIndex, nStyle); }
int CTabCtrlEx::AddWindow(CTabCtrlWindow* pWnd,LPCTSTR pszTitle)
{
    return InsertWindow(GetItemCount(),pWnd,pszTitle);
}