摘要: class A{A();~A();public: virtual void Func();}A::Func(){ CreateThread(NULL, 0, ThreadProc, this, 0, &m_dwThread));}class B:public A{B();~B();public: virtual void Func();}B::Func(){ ...; A::Func();... 阅读全文
posted @ 2010-10-27 17:50 pjh123 阅读(164) 评论(0) 推荐(0)
摘要: 如何设置view有滚动条:BOOL CMyFormView::PreCreateWindow(CREATESTRUCT& cs) { // TODO: Modify the Window class or styles here by modifying // the CREATESTRUCT cs // cs.style &=WS_EX_RIGHTSCROLLBAR |~WS_T... 阅读全文
posted @ 2010-10-27 09:07 pjh123 阅读(372) 评论(0) 推荐(0)