vc6.0,错误1083,cannot open the file

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/02 09:02:19
vc6.0,错误1083,cannot open the file

vc6.0,错误1083,cannot open the file
vc6.0,错误1083,cannot open the file

vc6.0,错误1083,cannot open the file
1楼的复制流完全不靠谱.
你的问题是你的头文件,没在工程查找的当前路径下.
1 把这个找不到的.h拷贝到工程当前路径,就是.dsw,.dsp所在的目录,就可以了.
2 或者在#include指令中使用完整路径/绝对路径(如#include "C:/XX/yy.h"),或者从工程根目录开始的相对路径(如 #include "..\..\XX\yy.h"),就可以了.你自己根据实际情况确认xx和yy是什么