我的主要想法是这样的:
CString strCombo;
for(int i=1;i<=5;i++)
{
  strCombo.Format("%s%d","m_ListBox",i);
  CListBox* strCombo=new CListBox;
  strCombo->Create(...);
}
动态的创建5个ListBox,请问如何将CString转换为控件的变量类型,同时能动态创建?