程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> open-在VS2013中CFile的file.Open 點報錯

open-在VS2013中CFile的file.Open 點報錯

編輯:編程綜合問答
在VS2013中CFile的file.Open 點報錯

求教各位,如題
代碼如下:
/*把位圖文件讀入內存*/
CFile File;//從CFile類中生成一個實例File
if (!File.Open("e:\8bitcol.bmp", CFile::modeRead)) return;//打開文件只讀,打開成功返回非0值,否則返回0

就是這句中File.Open的.報錯,報錯信息為:
no instance of overloaded function "CFile::Open" matches the argument list
argument types are:(const char[15], CFile::OpenFlags)
object type is: CFile

代碼之前在VC6.0上可以成功運行的

最佳回答:


改成:
if (!File.Open(_T("e:\8bitcol.bmp"), CFile::modeRead)) return;
試試

u011022227
u011022227
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved