VC++6.0C++报错

VC++6.0报错
error C2660: 'AddPage' : function does not take 1 parameters
error C2227: left of '->MoveWindow' must point to class/struct/union
自己实在是解决不了,有没有人帮忙看一下啊

        m_List.AddPage(&m_PageForOut);
    m_List.AddPage(&m_PageForNorth);
    m_List.AddPage(&m_PageForSorth);
    m_List.Create(this, WS_CHILD | WS_VISIBLE, WS_EX_CONTROLPARENT);
    CRect rect;
    this->GetClientRect(&rect);
    rect.top+=10;
    rect.left+=3;
    rect.bottom-=30;
    rect.right-=6;
    m_List.GetTabControl()->MoveWindow(&rect);
    this->GetClientRect(&rect);
    rect.top+=45;
    m_List.MoveWindow(&rect);

m_List是什么东西?对应的类有AddPage方法吗?
另外,AddPage放到Create之前,能好用吗?