codecamp

VC6.0问题集锦

背景

    最近同事的女儿(十岁小盆友,我十岁还在和泥巴)想要学习代码,设计游戏。

    给她推荐了 C 语言游戏编程视频(免费的哦) http://study.163.com/course/courseMain.htm?courseId=1004489035

    编程工具VC++6.0 链接:https://pan.baidu.com/s/1rWFiXsCKrZTUjtF5Q4o3LQ 密码:rztw

问题集锦

VC6.0

1. This file does not exist. Do you want to build it?






这个问题在于,新建文件时,没有关联工程。如上图“添加到工程”,即可解决问题。

2. One or more breakpoints cannot be set and have been disabled.  Execution will stop at the beginning of the program.






Source Insight 4.0 破解
VMRC 控制台的连接已断开
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }