惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
T
Threatpost
C
CERT Recently Published Vulnerability Notes
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Security Archives - TechRepublic
Security Archives - TechRepublic
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
K
Kaspersky official blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Attack and Defense Labs
Attack and Defense Labs
N
News and Events Feed by Topic
Project Zero
Project Zero
H
Heimdal Security Blog
C
Cybersecurity and Infrastructure Security Agency CISA
Know Your Adversary
Know Your Adversary
Google Online Security Blog
Google Online Security Blog
W
WeLiveSecurity
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Schneier on Security
Schneier on Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
N
News | PayPal Newsroom
Hacker News - Newest:
Hacker News - Newest: "LLM"
H
Hacker News: Front Page
L
LINUX DO - 热门话题
Spread Privacy
Spread Privacy
T
Threat Research - Cisco Blogs
Cloudbric
Cloudbric
V
Vulnerabilities – Threatpost
Hacker News: Ask HN
Hacker News: Ask HN
S
Securelist
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
TaoSecurity Blog
TaoSecurity Blog
NISL@THU
NISL@THU
N
News and Events Feed by Topic
S
Security Affairs
The Last Watchdog
The Last Watchdog
T
Tor Project blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
T
The Exploit Database - CXSecurity.com
Simon Willison's Weblog
Simon Willison's Weblog
P
Palo Alto Networks Blog
AWS News Blog
AWS News Blog
P
Proofpoint News Feed
C
Cisco Blogs
C
Cyber Attacks, Cyber Crime and Cyber Security
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
L
LINUX DO - 最新话题
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
T
Tenable Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
S
Schneier on Security

博客园 - ie421

无法解决 equal to 操作中的 **** 和 *******排序规则冲突 xml特殊字符 PowerDesigner备忘录 UML基础: 统一建模语言简介 十年MFC经历认识的Microsoft技术 远离"电脑颈" 网址 高质量C++/C编程指南 作一个真正合格程序员的七种素质(转载) [模板 转载]JavaScript Template JST模板引擎----Trimpath SQL 查找重复记录 【转】VC 常用插件和界面库 SQL2005删除用户的时候,产生“数据库主体在该数据库中拥有架构,无法删除”的解决办法 文本输入限制正则 英文、中文、数字、日期等 关于怎么学习API (OpenGL/Direct3D等) -针对初学者 给C++初学者的50个忠告 修练8年C++面向对象程序设计之体会 IE+JS: 上传之前检测图片文件大小 怎么为页面上的input控件在刷新页面后保存值
vc++2008常见错误处理
ie421 · 2008-10-06 · via 博客园 - ie421

===========================================================================

Error 1: error C2664: 'CButton::Create' : cannot convert parameter 1 from 'const char [4]' to 'LPCTSTR' 

程序:创建一个铵钮:

m_btn.Create(
    "new", //改成 _T("new"),
    BS_DEFPUSHBUTTON | WS_VISIBLE | WS_CHILD,
    CRect(0,0,100,100),
    this,
    123
    );

处理方法:"new", //改成 _T("new"),
===========================================================================

Error 2:(调试时弹出)没有找到mfc90ud.dll,因此这个应用程序未能启动.重新安装应用程序可能会修复此问题

处理办法:项目属性->Configuration Properties->Linker->Generate Map File 选择 Yes (/MAP)

===========================================================================