MessageBox第二个参数需要的是const char *类型的参数,但你的str是string的。可以使用string类的c_str函数转换一下,代码:
MessageBox(hwnd,str.c_str(),TEXT("字符串"),MB_OK);