VS2010里的GetCurSel(),该如何解决

VS2010里的GetCurSel()

int setCom;
switch (comboBox1.GetCurSel())
{
case 0:setCom=1;
break;
case 1:setCom=2;
break;
default: setCom=1;
break;
}

MessageBox(LPCTSTR(setCom));

MessageBox出来的是空,请问大家这是怎么回事呀?

------解决方案--------------------
囧。。。。
CString str;
str.Format(_T("%d"), setCom);
MessageBox(str);
------解决方案--------------------
汗。
setCom是整形,不带这么强转字符串的