请问一个关于CListCtrl的有关问题

请教一个关于CListCtrl的问题
本人几乎没有接触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


------解决方案--------------------
探讨

你应该把CListCtrl装入一个对话框,你可以设置对话框为没有标题栏。
用 CDialog::DoModal() 显示出来。