Win32 Dialog box in Qt
-
@void abc::uiexception::show() {
std::string apstr;
apstr = "File: " + getFile() + "\n Method: " + getMethod() + "\n Line: " + abc::to_string(getLine());
MessageBox(NULL, (LPCTSTR )apstr.c_str(),(LPCWSTR)getMessage().c_str(), MB_OK);
}@
Using the above code I intend to display error information to the user, however, the message pops up in some unknown language," look":https://skydrive.live.com/?cid=365DC2CB1062D510&id=365DC2CB1062D510!185&v=3#cid=365DC2CB1062D510&id=365DC2CB1062D510!185&v=3Is it that I am not allowed to make calls to the Win32 API from Qt?
TIA