Thursday, February 08, 2007

wsprintf error

发信人: magicshark (快乐第一), 信区: DotNET
标 题: 在线等
发信站: 水木社区 (Sat Feb 3 09:00:53 2007), 站内

wsprintf(szColor,"Current Color Red");
原来在vc旧版本中是可以用的,为什么在vc.net中会说
error C2664: “wsprintfW”: 不能将参数 1 从“char [25]”转换为“LPWSTR”
怎么改
达人指点


[本篇全文] [本篇作者:pseudocode] [进入讨论区] [返回顶部]2发信人: pseudocode (I can Run!), 信区: DotNET
标 题: Re: 在线等
发信站: 水木社区 (Sat Feb 3 09:37:24 2007), 站内


wsprintf(szColor, L"Current Color Red")

如果szColor不是wstring的话,结果也是不对的


[本篇全文] [本篇作者:magicshark] [进入讨论区] [返回顶部]3发信人: magicshark (快乐第一), 信区: DotNET
标 题: Re: 在线等
发信站: 水木社区 (Sat Feb 3 13:51:13 2007), 站内


wsprintf(szColor, L"Current Color Red")

wsprintf(szColor, _L"Current Color Red")
或者将szChar 设为_TCHAR也试过,
请问怎么其设为wstring
【 在 pseudocode (I can Run!) 的大作中提到: 】
: wsprintf(szColor, L"Current Color Red")
: 如果szColor不是wstring的话,结果也是不对的




[本篇全文] [本篇作者:pseudocode] [进入讨论区] [返回顶部]4发信人: pseudocode (I can Run!), 信区: DotNET
标 题: Re: 在线等
发信站: 水木社区 (Sat Feb 3 14:40:34 2007), 站内

WCHAR szColor[1024];

【 在 magicshark (快乐第一) 的大作中提到: 】
: 赞
: wsprintf(szColor, L"Current Color Red")
: wsprintf(szColor, _L"Current Color Red")
: ...................

--

※ 来源:·水木社区 newsmth.net·[FROM: 219.142.46.*]

[本篇全文] [本篇作者:magicshark] [进入讨论区] [返回顶部]5发信人: magicshark (快乐第一), 信区: DotNET
标 题: Re: 在线等
发信站: 水木社区 (Sat Feb 3 18:03:39 2007), 站内

服了,太赞了

No comments: