المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : Visual Studio 2005 like interface



C++ Programming
05-27-2009, 07:36 AM
Hi,

I am working in an application with docking window like Visual Studio 2005 interface. I do it with Visual Studio 2008 and MFC.

The left pane is a CTreeCtrl. I put items in it. When I click on an item, I want to display a form in the view portion of the application.

To do that, I have a member function called void CViewTree::OnTvnSelchanged(NMHDR *pNMHDR, LRESULT *pResult) to catch the event.

To display the form associated with the item clicked, I have to access the view class and after that the document class.

I access the view like that from the CViewTree::OnTvnSelchanged function:

CFrameWnd *pFrameWnd = (CFrameWnd*)AfxGetApp()->m_pMainWnd;
CCDSView* pView;
pView = (CCDSView*)pFrameWnd->GetActiveView();

I get memory leaks, but the program run anyway.

What I can't understand is that the program run under Vista 64 Home premium at home, but not run on an XP computer at office.

I compile it with Net Framework 2.0.

Does it has another way to access the view or document that does not crash my application ?

Thanks,

Claude