gpt4 book ai didi

带有 TCHAR 和字符串连接的 C++ 消息框

转载 作者:行者123 更新时间:2023-11-28 03:20:06 25 4
gpt4 key购买 nike

有人可以告诉我如何在消息框中输出 szFileName 吗?

我下面的尝试不起作用

//Retrieve the path to the data.dat in the same dir as our app.dll is located

TCHAR szFileName[MAX_PATH+1];
GetModuleFileName(_Module.m_hInst, szFileName, MAX_PATH+1);
StrCpy(PathFindFileName(szFileName), _T("data.dat"));

FILE *file =fopen(szFileName,"rb");
if (file)
{
fseek( file,iFirstByteToReadPos, SEEK_SET);
fread(bytes,sizeof(unsigned char), iLenCompressedBytes, file);
fclose(file);
}
else
{
MessageBox(NULL, szFileName + " not found", NULL, MB_OK);
DebugBreak();
}

最佳答案

您不能添加:

szFileName + " not found", 

简单修复:

MessageBox(NULL, szFileName, L"File not found", MB_OK);

关于带有 TCHAR 和字符串连接的 C++ 消息框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15710002/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com