本人几乎没有接触C++。最近做了一个ActiveX控件,想弹出一个CListCtrl。不知道如何实现,请大侠帮我。
------解决方案--------------------------------------------------------
CListCtrl *ctr = new ...
ctr->Create(....)
Define the control in the view or window class.
Call the control's Create member function, possibly in OnInitialUpdate, possibly as early as the parent window's OnCreate handler function (if you're subclassing the control). Set the styles for the control.
==>msdn
------解决方案--------------------------------------------------------