Hello,

I want to try to port http://keepass.info/ and the “Excel demo” of http://www.codeproject.com/Articles/20183/The-Ultimate-Grid-Home-Page to https://sourceforge.net/projects/win32gui/

I see that next MFC classes used in the programs not exist in win32gui:
CListCtrl;
CTreeCtrl;
CProgressCtrl;
CRichEditCtrl;
CDocument;
CMDIFrameWnd;
CMDIChildWnd.

I thinking of grabbing the code out of the MFC files (see Appendix A for the details) and putting it to the namespace Win32xx. Maybe there is an other (better) way?

Greetings Jan Marco

Appendix A: MFC classes not in win32gui:
CListCtrl -> header: afxcmn.h, implementation: winctrl2.cpp and winctrl6.cpp
CTreeCtrl -> header: afxcmn.h, implementation: winctrl2.cpp
CProgressCtrl -> header: afxcmn.h, implementation: winctrl2.cpp and winctrl6.cpp
CRichEditCtrl -> header: afxcmn.h, implementation: winctrl2.cpp
CDocument -> header: afxwin.h, implementation: winmdi.cpp
CMDIFrameWnd -> header: afxwin.h, implementation: winmdi.cpp
CMDIChildWnd -> header: afxwin.h, implementation: winmdi.cpp